Omschrijving
// smoothscroll to hash
//———————
var scrollToTopH = 140;
$(“a[href*=#]”)
.not(“.no-scroll”)
.on(“click”, function(event) {
if ($(this.hash).length > 0) {
event.preventDefault();
$(“html,body”).animate(
{
scrollTop: $(this.hash).offset().top – scrollToTopH
},
500
);
}
});