Hello, how can I get this scroll back to the top neat thing from this link , just scroll down a bit, you'll see in the bottom right icon(top pointer) that scrolls back to the top on click. Thank you
+1
A:
You can find the script here: http://www.javascriptkit.com/jkincludes/scrolltopcontrol.js
Although you need to use jquery for this script to work.
Bloeper
2009-11-10 11:03:51
thank you it is the solution indeed
c0mrade
2009-11-10 11:18:20
A:
In jQuery:
$(document).ready(function() {
$('a[href=#top]').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
});
You can then make links like this:
<a href="#top" title="Scroll back to the top">Back to the top</a>
Dominic Rodger
2009-11-10 11:04:00