I am trying to implement the scroll to top feature in my website: www.arrow-tvseries.com.
The \"button\" is seen on the website however it does not work properly, becaus
You can do the same thing with below code:
$("a[href='#top']").click(function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; });
Try this. Hope it helps.