on dismiss modal jquery code example
Example 1: data-dismiss= modal in jquery
$(document).ready(function(){
// Open modal on page load
$("#myModal").modal('show');
// Close modal on button click
$(".btn").click(function(){
$("#myModal").modal('hide');
});
});
Example 2: modal show not close jquery
jQuery('#modal_ajax').modal('show', {backdrop: 'static', keyboard: false});