1159 0 0 0
Last Updated : 2025-04-28 22:22:43
Sometimes, when a modal appears you donot want to be hidden if you clicked outside it in the gray area around it in the whole page. to prevent that behavoir, Use the following small code to prevent all modals from this action:
//Prevent hidding modal when clicked outside
$('div.modal').modal({
show : false,
backdrop: 'static',
keyboard: false
})