Bootstrap’s JavaScript modal plugin code example
Example 1: open bootstrap modal using javascript
$("#myModal").modal(); //open modal
$('#myModal').modal('toggle'); //open modal
$('#myModal').modal('show'); //open modal
$('#myModal').modal('hide'); //hide modal
//@sujay
Example 2: bootstrap on hidden bs modal
$('#myModal').on('hidden.bs.modal', function (e) {
// do something...
})
Example 3: open bootstrap modal with javascript
$("#myModal").modal()
Example 4: html data-target modal
$('#myModal').modal('show')