Answers for "prevent body from scrolling when a modal is opened"

0

prevent body from scrolling when a modal is opened

$('#adminModal').modal().on('shown', function(){
    $('body').css('overflow', 'hidden');
}).on('hidden', function(){
    $('body').css('overflow', 'auto');
})
Posted by: Guest on August-04-2020

Code answers related to "prevent body from scrolling when a modal is opened"

Browse Popular Code Answers by Language