Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var win_height = $(window).height(), scroll_pos = win_height + $(window).scrollTop();
  2.  
  3. $('window').on('scroll' , function(){
  4. if(win_height < scroll_pos) {
  5. $('#containerPages').css({'position' : 'fixed' });
  6. } else {
  7. $('#containerPages').css({'position' : 'static' });
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement