bootstrap modal show jquery

To show a Bootstrap modal using jQuery, you can use the following code:

$('#myModal').modal('show');

In this code, #myModal is the ID of the modal element you want to show. The modal('show') function is used to display the modal.

Make sure you have included the necessary Bootstrap and jQuery libraries in your HTML file for this code to work properly.

That's it! The modal should now be displayed on your webpage.

If you have any further questions, feel free to ask.