Original Post
Is it possible to run two javascript functions simultaneously? I've written a fader script that is designed to work with most HTML elements. There are a few major functions involved, but when you get down to it, it's a fade in function and a fade out function. The problem I'm having is when I have two elements using the script. When you mouse over an element, it fades in. When you mouse away from it, it begins to fade out. If you then mouse over a second element, the first one ceases to fade out and gets stuck at its current opacity. In order to get it to go back to 0 opacity, you have to mouse over it again. Since there is no javascript error, I assume this is happening because I can't run two functions simultaneously. Would moving the fade out function to a different script solve the problem? Thanks in advance.