I have used a scrollTop function in jQuery for navigating to top, but strangely \'the smooth animated scroll\' stopped working in Safari and Chrome (scrolling w
scrollTop
Try using $("html,body").animate({ scrollTop: 0 }, "slow");
$("html,body").animate({ scrollTop: 0 }, "slow");
This works for me in chrome.