[jQuery] Re: Pause Plugin- why it does not work for me

2007-04-27 Thread Karl Swedberg
You could also use setTimeout(). For a quick and dirty chainable method, you could check out this entry: http://www.learningjquery.com/2007/01/effect-delay-trick --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 26, 2007, at 11:09 PM, joomlafreak wrote

[jQuery] Re: Pause Plugin- why it does not work for me

2007-04-26 Thread Matt Stith
i believe the pause plugin broke around v1 of jQuery. On 4/26/07, joomlafreak <[EMAIL PROTECTED]> wrote: Hi James Thanks for your reply but it seems your method also does not work. By following your method, if I want to change the css property of an element after 4 seconds I would be writing

[jQuery] Re: Pause Plugin- why it does not work for me

2007-04-26 Thread joomlafreak
Hi James Thanks for your reply but it seems your method also does not work. By following your method, if I want to change the css property of an element after 4 seconds I would be writing it like this $("#indic").pause(4000).css("display","block"); but this changes the style right away. On Ap

[jQuery] Re: Pause Plugin- why it does not work for me

2007-04-26 Thread James Thomas
I haven't used Pause but I took a look at the code and it looks like you use it in a chain, like this: $ ('#navig_item_text').removeClass('navig_item_active').pause(3000).slideUp('slow'); It's how it appears to me (may be wrong in my interpretation though). Also, it appears that type is an opti