You can try to do a simple JS scroll by calling a function scrollToin a window.
If you want to do the top of the scroll, this would be:
window.scrollTo(0, 0);
Update
var scrollEvent = document.createEvent('CustomEvent');
scrollEvent.initCustomEvent( 'scroll', false, false, null );
window.dispatchEvent(scrollEvent)
source
share