How do I instantly (not animated!) scroll to the top in Angular8+ from a service?
window.scrollto(0,0) does not work.
$([document.documentElement, document.body]).animate({
scrollTop: 0
}, 100)
Isn't beautiful but works at all at least but the duration value seems to not be allowed to be set to 0 (which would anyway completely lose the purpose of jquery's animate method :) )