Skip to content Skip to sidebar Skip to footer

How To Prevent Body Scrolling On Ios 12 When Modal Opened?

Scenario : On iOS 12 none of solutions for iOS 11 doesn't work. Tried CSS: body.modal-open { overflow: hidden; position:fixed; width: 100%; } And also this body.modal-o

Solution 1:

Take a look at this similar question but with plain javascript is answered at https://stackoverflow.com/a/49582193

document.addEventListener('touchmove', function(e) {
    e.preventDefault();
}, { passive: false });

Post a Comment for "How To Prevent Body Scrolling On Ios 12 When Modal Opened?"