HTML Constant Page Scroll Help
Go to solution
Solved by Guest,
Ok i have seem to work it out with two different script. I do appreciate your help @Nineshadow. Your return to top script was at play so thanks again.
Page Auto Scrolling:
javascript:var isScrolling; var scrolldelay; function pageScroll() { window.scrollBy(0,1); scrolldelay = setTimeout('pageScroll()',100); isScrolling = true; } if(!isScrolling) { pageScroll(); } else { isScrolling = false; clearTimeout(scrolldelay); }
Return to top of page on refresh:
$(document).ready(function(){ $(this).scrollTop(0);});

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now