How to open bootstrap modal popup using jquery

Here I will explain how to use jQuery to show bootstrap modal popup on button click with example or jQuery open bootstrap modal popup on button click with example or open / show bootstrap modal popup window using jQuery with example. By using “modal” property we can show bootstrap modal popup on button click.

Code

$('#OpenModel').click(function(){
    $('#myModal').modal('show');
});

Leave a Reply

Your email address will not be published. Required fields are marked *