modal fade role= dialog jquery show code example
Example 1: onclick open modal jquery
$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');
Example 2: bootstrap modal
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').trigger('focus')
})