Smooth scroll doesnt scroll at all
Hi,
Here is the page http://www.theatticbanwell.co.uk/index.html
I have put the following code in the head section.
Code:
<script type="text/javascript">
var timeOut;
function scrollToTop() {
if (document.body.scrollTop!=0 || document.documentElement.scrollTop!=0){
window.scrollBy(0,-50);
timeOut=setTimeout('scrollToTop()',10);
}
else clearTimeout(timeOut);
}
</script>
This is my code applied to a button.
Code:
<a href="#" onclick="scrollToTop();return false"><img src="misc/BACK-TO-TOP.png" alt="The Attic Banwell Shabby Chic Items" width="150" height="50" ></a>
Clicking the button does nothing.
Before just with "#header" it worked but jumped to the top.
Please do you see any issues ?
Thanks