Hi, we’re trying to make some jquery animation work for some hash location links in some of our pages, but copying this code below hasn’t worked for us:
jQuery(document).ready(function(){
jQuery('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash;
$target = jQuery(target);
jQuery('html, body').stop().animate({
'scrollTop': $target.offset().top-80
}, 900, 'swing');
});
});
From: https://community.theme.co/forums/topic/smooth-scrolling-with-non-menu-anchor-links/
Are you able to provide us with the correct code to add into the customiser please :)?
Thanks!