Přeskočit na hlavní obsah
Přeskočit na zápatí
document.addEventListener('bricks/ajax/end', (event) => {
// Get the queryId from the event
const queryId = event.detail.queryId || false;
if (!queryId) {
return;
}
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});