[cmplz-document type= »cookie-statement » region= »eu »]
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll('a[href="#"]').forEach(link => {
link.addEventListener('click', function(e) {
const targetSelector = this.dataset.relative_url;
if(targetSelector){
e.preventDefault();
const target = document.querySelector(targetSelector);
if(target){
target.scrollIntoView({ behavior: 'smooth' });
}
}
});
});
});