You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
427 B

$(document).ready(function() {
$('body').on('click', '.navbar-nav li a', function(e) {
$('li.active').removeClass('active');
var link = $(this);
link.closest('li').addClass('active');
// Scroll animation
$('html, body').animate( { scrollTop: $(link.attr('href')).offset().top }, 750 );
return false;
});
//Scrollspy
$('body').scrollspy({ target: '#menu' });
});