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
I had a same problem with scrolling in chrome. So i removed this lines of codes from my style file.
html{height:100%;} body{height:100%;}
Now i can play with scroll and it works:
var pos = 500; $("html,body").animate({ scrollTop: pos }, "slow");