enable scroll on onload of page
I have a problem in scrolling.When i am at the bottom of my page.I try to scroll up using mouse.page comes down to bottom.This is because still page is loading in bottom.How to enable the scroll after a page loads completely. use any event + function.Using jquery 开发者_开发百科or js.
Daffodil, This can usually be achieved by simply putting your script at the bottom of the page. It won't be called until it is created and it won't be created until the rest of the page is. Now I'm not positive if you're trying to scroll to the bottom or the top but the code will look something like
<script type="text/javascript">
window.scrollTo(0,document.body.scrollHeight);
</script>
精彩评论