how to close the modal popup using jquery code example
Example 1: on modal close jquery
$('#myModal').on('hidden.bs.modal', function () {
// do something…
})
Example 2: jquery close bootstrap model
$('#modal').modal('hide');
Example 3: how to make popup modal in jquery with example
$("#sticky").modal({
escapeClose: false,
clickClose: false,
showClose: false
});