I have a SF menu that expands over a form. With FF3, when I mouseout over any of the form fields, the menu does not collapse. I need to place the cursor back in the menu and mouseout somewhere else. This is only the case directly over the input, or textarea tags. If I slip the mouse between them it works fine. Any ideas as to what might be causing this? Maybe something with jQuery blur?
I'm guessing that the following code is where the problem starts: <code> $a.each(function(i){ var $li = $a.eq(i).parents('li'); $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call ($li);}); }); </code>