Disable Modal Background Click/Touch
How to disable a modal background click/touch to prevent accidental modal close
Last updated
Was this helpful?
How to disable a modal background click/touch to prevent accidental modal close
Last updated
Was this helpful?
Was this helpful?
/***************************************************************/
/*** Disable the ability to Click/Touch outside a Modal Page ***/
/***************************************************************/
$(document).on('knack-scene-render.any', function(event, scene) {
$('.kn-modal-bg').off('click');
});