toggle bootstrap modal using javascript code example
Example 1: close bootstrap modal with javascript
$('#myModal').modal('hide');
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