jaymc Posted August 21, 2007 Share Posted August 21, 2007 I have this script that runs every second in a page window.setTimeout('doscroll()',1000); function doscroll() { objDiv = document.getElementById("dvB"); var intY = objDiv.scrollTop; var intE = objDiv.scrollHeight; objDiv.scrollTop = objDiv.scrollHeight+900; window.setTimeout('doscroll()',1000); } Since javascript is client side do you think inevertably its going to crash the browser on a ball park figure ot clients PC's? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.