-
-
Save nocodesupplyco/8e4966fa60cc02787f1aa6651ce66dc2 to your computer and use it in GitHub Desktop.
Prevent Body Scroll on Click
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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