Base theme for LMMI Journal
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.
 
 
 
 
 

16 lines
560 B

jQuery(document).ready(function($) {
if ($(".smooth-scroll").length>0) {
$(".smooth-scroll a, a.smooth-scroll").click(function() {
if (location.pathname.replace(/^\//,"") == this.pathname.replace(/^\//,"") && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $("[name=" + this.hash.slice(1) +"]");
if (target.length) {
$("html,body").animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
}
});