Home › Forums › Support › Joomla Template Interior OnePage Smooth Scroll Links in content possible? › Reply To: Joomla Template Interior OnePage Smooth Scroll Links in content possible?

Posted 6 years, 7 months ago
Sorry, I just modifed the js script and problem solved. The js look like so
jQuery(function ($) {
$('a[href*=#]:not([href=#])').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;
}
}
});
});