I want to scroll the page to the top, I tried the following 2 methods which are working in Chrome but not in Safari.
//Method 1
$("html,body").animate({ scrollTop: 0 }, "slow");
//Method 2
window.scroll({
 top: 0, 
 left: 0, 
 behavior: 'smooth' 
});