Scroll nella pagina con ancore e jQuery
Localscroll
$(document).on('click', 'a[href^="#"]', function (event) {
event.preventDefault();
$('html, body').animate({
scrollTop: ( $($.attr(this, 'href')).offset().top - 100 )
}, 500);
});Last updated
Localscroll
$(document).on('click', 'a[href^="#"]', function (event) {
event.preventDefault();
$('html, body').animate({
scrollTop: ( $($.attr(this, 'href')).offset().top - 100 )
}, 500);
});Last updated