[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-28 Thread Mech7
Anybody have any other suggestions what i could try ? :( On Oct 22, 3:00 pm, Mech7 [EMAIL PROTECTED] wrote: Thanks I have tried mouseenter and leave but it has the same problem : ( On Oct 21, 7:24 am, MorningZ [EMAIL PROTECTED] wrote: I wouldn't put Flash as the single cause for this...

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-22 Thread Mech7
Thanks I have tried mouseenter and leave but it has the same problem : ( On Oct 21, 7:24 am, MorningZ [EMAIL PROTECTED] wrote: I wouldn't put Flash as the single cause for this... I have a table of ~ 30 rows that i tried to wire in a hover event which colored/de-colored the row the user was

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread Mech7
What is not working correctly with me is when I hover the dropdown menu i change the color of the sifr text so it remains black: http://www.mech7.net/tmp/sifr/ In script.js in line 26: ,onRollOut: function(cb) { var currentMenuItem =

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread Karl Rudd
Oh, you're working with Flash... hmmm that's probably the reason. Getting events from object or embed nodes can be... tricky, in my very limited experience. My suggestion is that you drop the SIFR menu items and use background images. Either that or you'll have to somehow tap into the hover

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread MorningZ
I wouldn't put Flash as the single cause for this... I have a table of ~ 30 rows that i tried to wire in a hover event which colored/de-colored the row the user was over so it was obvious what row they were one moving the mouse in and out very quickly made the out event not fire resulting

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-15 Thread Mech7
Ok when I go over the example one fast stroke in Firefox 3 then I get 4 and 6 for the outer.. in the 1st example. Now try to do a circlular movement in the orange box in the 1st example... stay inside the orange, over keeps firing, do a movement from left to right and it doesn't On the 2nd

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-15 Thread Karl Rudd
Right. That's what I'd expect. The mouseout (and mouseover) events bubble up through child DOM nodes, and often fire at odd times, which is why it you should use the mouseenter and mouseleave events. The enter and leave events are specially built to not bubble (at least not unexpectedly). I do

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-14 Thread Karl Rudd
It seems to work as I expect it too on the example page. Can you provide a working example and explain what you expect to happen? Karl Rudd On Wed, Oct 15, 2008 at 2:02 PM, Mech7 [EMAIL PROTECTED] wrote: http://docs.jquery.com/Events/mouseout Even in the example it does not work correct..