show bootstrap modal using javascript code example

Example 1: programmatically show modal boostrap

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

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 show modal jquery

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

Example 4: open modal in jqwuery

$("#myModal").modal()

Example 5: bootstrap modal show event

$('#code').on('shown.bs.modal', function (e) {
  // do something...
})