Skip to content
document.addEventListener("DOMContentLoaded",function(){
document.querySelectorAll('.elementor-toc__list-item a').forEach(function(a){
a.addEventListener("click",function(e){
e.preventDefault();
var id=this.getAttribute("href").split("#")[1];
var target=document.getElementById(id);
if(target){
target.scrollIntoView({
behavior:"smooth",
block:"start"
});
history.replaceState(null,null,window.location.pathname);
}
});
});
});