Guest User

Untitled

a guest
Apr 30th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function OffScroll () {
  2. var winScrollTop = $(window).scrollTop();
  3. $(window).bind('scroll',function () {
  4. $(window).scrollTop(winScrollTop);
  5. });}
  6. OffScroll ();
  7.  
  8. $(window).unbind('scroll');
Add Comment
Please, Sign In to add comment