Advertisement
afsarwebdev

On scroll addClass and removeClass

Sep 17th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //On scroll addClass and removeClass
  2.  
  3. $(window).scroll(function() {
  4. var scroll = $(window).scrollTop();
  5.  
  6. if (scroll > 150) {
  7. $(".ic-bottom-header").addClass("header-fixed");
  8. } else {
  9. $(".ic-bottom-header").removeClass("header-fixed");
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement