Skip to content

Instantly share code, notes, and snippets.

@Crocoblock
Last active February 26, 2025 03:30
Show Gist options
  • Select an option

  • Save Crocoblock/27a21fb37fc069796c6aa553cce06c71 to your computer and use it in GitHub Desktop.

Select an option

Save Crocoblock/27a21fb37fc069796c6aa553cce06c71 to your computer and use it in GitHub Desktop.
JetSmartFilters Scroll to page top on filters application
<script>
document.addEventListener('jet-smart-filters/inited', function(initEvent) {
jQuery(function($) {
window.JetSmartFilters.events.subscribe('ajaxFilters/updated', function(provider, queryId) {
setTimeout( function() {
window.scrollTo({
top: 0,
behavior: "smooth",
});
}, 10 );
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment