Skip to content
// Detecteer navigatieveranderingen en vertel Hotjar dat de pagina is veranderd
window.addEventListener('popstate', function() {
if (window.hj) hj('stateChange', window.location.pathname);
});
// Als je theme AJAX gebruikt (Shopify router / turbo / instantpage), kun je ook dit gebruiken:
document.addEventListener('shopify:section:load', function() {
if (window.hj) hj('stateChange', window.location.pathname);
});