show bootstrap modal with jquery code example
Example 1: programmatically show modal boostrap
$('#myModal').modal('show');
Example 2: bootstrap show modal jquery
$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');
Example 3: onclick open modal jquery
$('#my-modal').modal({
show: 'false'
});