Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(window).scroll(function(e){
  2. $fixed = $('.fixed');
  3. if ($(this).scrollTop() > 300 && $fixed.css('position') != 'fixed'){
  4. $fixed.css({'position': 'fixed', 'top': '0px'});
  5. }
  6. });
Add Comment
Please, Sign In to add comment