how to hide modal in 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: hide bootstrap modal jquery
$(document).ready(function(){
$(".btn").click(function(){
$("#myModal").modal('hide');
});
});
Example 3: hide and show modal jquery
$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');