jQuery – Scroll top on pagination
Just put this jQuery in the JS Editor of your View:
jQuery( document ).on( 'js_event_wpv_pagination_completed', function( event, data ) {
jQuery('html, body').animate({ scrollTop: 0 }, 'fast');
});
It will scroll to the top of the page, when the result is updated, everytime the user clicks on any pagination link.
