That's a drag. 

The queuing up of events must be because of the 1/2 second fadeTo function
inside a hover.

http://www.whatbird.com/wwwroot/3statebutton_framed_4.html

Do you know if there is a way a way to kill any queued up mouse events after
the user does a mouse out?

Here's what the critical piece is.


        $("#trigmask").hover(function() {
                $("#nest").fadeTo(500,1.0)
                $("#But1frm").show();
        }, function() {
                $("#nest").fadeTo(500, .35)
          /*  $("#But1frm").fadeTo(100, 0)      */
            $("#But1frm").hide()
        });


-----Original Message-----
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tobias Parent
Sent: Friday, July 27, 2007 1:35 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: 3 state buttons - The Final Act - and a jQuery bug?


Wooo... Whatever you do, don't mouse in and out of that nest really fast 
-- it queues up a bunch of fades in/out. Funky!!




Reply via email to