[jQuery] Re: repeated click when using .show(slow)

2007-07-22 Thread Glen Lipka
I know the Tabs plugin used to do this, and then it got fixed. Might want to check out how that works. http://www.stilbuero.de/jquery/tabs/ Also there is an animation queue plugin. I wonder if it could be used for something like this. http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html

[jQuery] Re: repeated click when using .show(slow)

2007-07-22 Thread Ganeshji Marwaha
try setting a boolean to flag if animation is in progress and dont execute animation on repeated clicks if the boolean is set. Something like this... Eg: var animating = false; $("button").click(function() { if(!animating) { animating = true; $(this).show("slow", function() { animating

[jQuery] Re: repeated click when using .show(slow)

2007-07-20 Thread mmjaeger
nobody able to answer this? I really like to know whether I'm doing something wrong here. sorry for bumping. On Jul 17, 5:43 pm, mmjaeger <[EMAIL PROTECTED]> wrote: > Hello, > > I've a link I'm using .show(slow) - it works fine unless I click > repeatedly fast on the link - re-clicking the link

[jQuery] Re: repeated click when using .show(slow)

2007-07-19 Thread Dan G. Switzer, II
>bump Sending a "bump" message with nothing in the message but the word "bump" isn't going to get you much help from people who only read this group via e-mail. -Dan

[jQuery] Re: repeated click when using .show(slow)

2007-07-19 Thread mmjaeger
bump