Por favor visite este enlace .
Intente hacer clic en el enlace "Portafolio", debe estar resaltado con un fondo azul.
Pero después de hacer clic fuera de la barra de navegación, se resaltará en azul.
//scrolling $('nav a').on('click', function() { var scrollAnchor = $(this).attr('data-scroll'), scrollPoint = $('section[data-anchor="' + scrollAnchor + '"]').offset().top; $('body,html').animate({ scrollTop: scrollPoint }, 500); return false; }); //change color $(window).scroll(function() { var windscroll = $(window).scrollTop(); if (windscroll) { $('section').each(function(i) { if ($(this).position().top <= windscroll) { $('nav a.active').removeClass('active'); $('nav a').eq(i).addClass('active'); } }); } }).scroll();