Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var articleInfo = $('.article-info');
  2. var articleInfoPos = $(articleInfo).offset().top;
  3. $(window).scroll(function () {
  4. var windowScroll = $(window).scrollTop();
  5. if (windowScroll > articleInfoPos) {
  6. $('.menu-catalog').removeClass("fixed");
  7. } else {
  8. $('.menu-catalog').addClass("fixed");
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement