A simple scroll to top effect...The code doesn't work in ie or firefox but works fine in chrome.
html like this :
<a href="#" class="scrollTop"><i class="glyphicon glyphicon-chevron-up"></i></a>
And script like this :
$(document.body).animate({
'scrollTop':'0'
},2000);
I have tried to replace$(document.body)
with $("body")
,nothing happen...