$(function() { $('ul.info-list li a,#scroll-btn').bind('click', function(event) { $(this).parent().addClass('active'); var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1500, 'easeInOutExpo'); event.preventDefault(); }); });