Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 19, 2022 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nocodesupplyco/8e4966fa60cc02787f1aa6651ce66dc2 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/8e4966fa60cc02787f1aa6651ce66dc2 to your computer and use it in GitHub Desktop.
Prevent Body Scroll on Click
window.addEventListener('DOMContentLoaded', (event) => {
$('.nav-button, .nav-overlay').click(function() {
if ($('body').css('overflow') !== 'hidden') {
$('body').css('overflow', 'hidden');
} else {
$('body').css('overflow', 'auto');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment