[jQuery] Re: Jquery and setInterval() does not work together

2009-06-18 Thread waseem sabjee
var timer = 2000; setInterval(function() { $("body").prepend("Testing"); }, timer); On Thu, Jun 18, 2009 at 9:36 PM, James wrote: > > Try: > > playSlideshow = setInterval( slideSwitch, 1000 ); > > (without the quotes around "slideSwitch") > > On Jun 18, 6:07 am, Steve Tran wrote: > > Hello eve

[jQuery] Re: Jquery and setInterval() does not work together

2009-06-18 Thread James
Try: playSlideshow = setInterval( slideSwitch, 1000 ); (without the quotes around "slideSwitch") On Jun 18, 6:07 am, Steve Tran wrote: > Hello everybody, > First time in this list. I've developed a plugin for a simple slide > show.  and here is the codehttp://pastie.org/516507 > The problem is