Topic awaiting preservation: function calling (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: KY |
posted 12-06-2001 06:45
I'm trynig to create atimed fade out of text when a mouse is taken away from an <a> tag. That's no problem (I'm getting the hang of the basic js programming) but while the timer is going nothing happens when the mouse is over the other <a> tags. Each <a> tag calls its own function from a single external js script. Is there a way to add to the timer function that says if any of the other onMouseOver functions are called then ignore the timer? |
Paranoid (IV) Mad Scientist From: Somewhere over the rainbow |
posted 12-06-2001 08:54
The poster has demanded we remove all his contributions, less he takes legal action. |
Maniac (V) Mad Scientist From: New California |
posted 12-06-2001 14:10 |
Bipolar (III) Inmate From: KY |
posted 12-06-2001 17:23
bugimus, that sound like what I want to do, but my timer function didn't use setTimeout at all it was a for loop "(i=5000;i>=0;i=i-1) was what I was using. then I set the innerHTML of my div to nothing so the text would disappear. How would I use the setTimeout to do it instead? |