On 5/31/13 4:08 PM, Nathan England wrote:
<head>
<script type="text/javascript">
function moveWin() {
window.scrollBy(0,100);
setTimeout('moveWin();',10);
}
</script>
</head>
<body onLoad="moveWin();">
Why are you waiting until the page loads to run it? I'd just do this:
<script type="text/javascript">
function moveWin() {
window.scrollBy(0, 100);
}
setInterval('moveWin()', 10);
</script>
/*
PLUG: http://plug.org, #utah on irc.freenode.net
Unsubscribe: http://plug.org/mailman/options/plug
Don't fear the penguin.
*/