/html-dom /Basic
GitHub 4932★

Prevent body from scrolling when opening a modal

// Disable scrolling on the `body` element when opening a modal
document.body.style.overflow = 'hidden';

// Allow to scroll when closing the modal
document.body.style.removeProperty('overflow');

See also

Follow me on and to get more useful contents.