hi,
it was quite uncanny visiting this site for the first time and being welcomed by your scrolling login,
i am at the moment trying to put together something similar,
the site I am building is an admistrative site for gun-licencing operators consisting of various elaborate forms to fill in for merging to various licencing applications, because some of the forms are really long, i had to add save and edit buttons at regular intervals, but I had seen a divider that scrolls with the page somewhere before, and decided I was going to try to script one myself, so that i could have the save/edit buttons run alongside the form,
so the story goes...
basically to set up the scrolling div wasnt too complicated until I checked it out in my IE6 browser basically setInterval wasn't working so well,actually it only passed once and stopped,after a frustrating search on the topic, my end call looked something like this
Code:
<?php
$intval = (int)0;
echo "<script language='javascript'>setInterval(\"slidediv()\",".$intval.");</script>";
?>
I eventually scrapped this, as IE6 just wasn't having fun,
I did decide on alternative solution which I think will work ok, but would like some advice on the above topic and perhaps on my solution,
basically what I have done instead is to call setTimeout, and I call my function that I was calling with setInterval,
but I made it into a recursive function with an option to abort as well, so it just keeps doin its job until it gets told to stop, which is perfect because I don't really need a delay on my scrolling div.
..in hindsight and as i am just busy thinking, perhaps, because IE6 at least reads setInterval once I could add setInterval as the recursive call, but that might actually do some nasty things if i think about it, a recursive setInterval that doesnt stop recursing on itself,eeek,
anyway any advice on getting setInterval working on IE6 most appreciated.