Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created October 25, 2014 07:51
Show Gist options
  • Save oguzhanaslan/17bdc22a3a4a6faf63b2 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/17bdc22a3a4a6faf63b2 to your computer and use it in GitHub Desktop.
Disable Scrolling
function disableScrolling(){
$(document).bind("scroll",function(e){
$('html, body').animate({scrollTop : 0},200);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment