Skip to content

Instantly share code, notes, and snippets.

@kevsimpson
Created November 4, 2013 21:59
Show Gist options
  • Save kevsimpson/7309887 to your computer and use it in GitHub Desktop.
Save kevsimpson/7309887 to your computer and use it in GitHub Desktop.
Prevents body from scrolling when scrolling a sidebar
var body = $('body'),
sidebar = $('#sidebar');
// sidebar overflow hide
sidebar.mouseenter(function() {
body.css('overflow', 'hidden');
});
sidebar.mouseleave(function() {
body.css('overflow', 'auto');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment