open modal bootstrap javascript code example
Example 1: bootstrap modal
Example 2: 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 3: bootstrap on hidden bs modal
$('#myModal').on('hidden.bs.modal', function (e) {
// do something...
})
Example 4: open modal in jqwuery
$("#myModal").modal('show')
Example 5: bootstrap modal
Example 6: bootstrap modal popup