Skip to content

Instantly share code, notes, and snippets.

@searleb
Created March 14, 2016 00:38
Show Gist options
  • Save searleb/858ad354b03cc0f86801 to your computer and use it in GitHub Desktop.
Save searleb/858ad354b03cc0f86801 to your computer and use it in GitHub Desktop.
Prevent page scrolling - eg when using a full screen nav overlay
// prevent page scrolling when mobile menu is visible
$('.navbar-toggle').on('click', function() {
$('body').toggleClass('no-scroll');
});
body{
&.no-scroll{
overflow: hidden;
position: fixed;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment