$('ul#submenu-page li a').click(function(e) {
e.preventDefault();
var subMenuId = $(this).attr("href");
$('ul#submenu-page li').removeClass("active");
$(this).parent("li").addClass("active");
if (subMenuId==='#section1') {
$('body, html').scrollTo(0, 1000, {easing:"easeInOutExpo"});
} else {
$('body, html').scrollTo("#page " + subMenuId, 1000, {easing: "easeInOutExpo", offset:{top:-180}});
$("#page " + subMenuId).addClass("active");
}
});
Open in new window