Scroll to div smoothy after page load and not directly
I have a php page and I am trying to scroll user to section automatically
after entire page is loaded. Right now it takes directly to that section
on page load, I want entire page to be loaded and then scroll the page to
that div. What I am doing is.
<script type="text/javascript">
<!--
function gotoit()
{
window.location="#gohere";
}
//-->
</script>
<body onload="gotoit()">
some code here
<a name="gohere"><div class="I want to scroll to this div"></a>
Please help me what should I do to scroll smoothly to that section
automatically after page load.
No comments:
Post a Comment