bootstrap show modal jquery

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

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

Make sure you have included the Bootstrap and jQuery libraries in your HTML file.

This code selects the element with the ID "myModal" and calls the modal('show') function on it, which displays the modal.

Remember to replace "myModal" with the ID of your own modal element.