Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(window).scroll(function() {
  2.     var windscroll = $(window).scrollTop();
  3.     if (windscroll >= 100) {
  4.         $('.scrollMe').each(function(i) {
  5.             if ($(this).position().top <= windscroll - 20) {
  6.                 $('sidebar-nav a.active').removeClass('active');
  7.                 $('sidebar-nav a').eq(i).addClass('active');
  8.             }
  9.         });
  10.  
  11.     } else {
  12.  
  13.         $('sidebar-nav').removeClass('fixed');
  14.         $('sidebar-nav a.active').removeClass('active');
  15.         $('sidebar-nav a:first').addClass('active');
  16.     }
  17.  
  18. }).scroll();
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement