Skip to content

Instantly share code, notes, and snippets.

@kevsimpson
Created November 4, 2013 22:03
Show Gist options
  • Save kevsimpson/7309923 to your computer and use it in GitHub Desktop.
Save kevsimpson/7309923 to your computer and use it in GitHub Desktop.
Prevent body scroll while scrolling sidebar
var body = document.getElementsByTagName('body')[0],
sidebar = document.getElementById('sidebar');
// sidebar overflow hide
sidebar.onmouseover = function() {
body.style.overflow = 'hidden';
}
sidebar.onmouseout = function() {
body.style.overflow = 'auto';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment