[jQuery] Re: When using append() , appended content is not treated by jquery

2009-06-14 Thread Charlie
problem is events won't trigger on new element introduced to DOM after document ready has fired unless you use live() or livequery(), these allow to bind to elements before they enter DOM read up on it, will be an easy fix Eric-Sebastien Lachance wrote: Sorry if the subject is somewhat

[jQuery] Re: When using append() , appended content is not treated by jquery

2009-06-14 Thread Eric-Sebastien Lachance
Thanks a lot Charlie, livequery() is precisely what I needed, it works great this way! Cheers, Eric. On Jun 14, 7:22 pm, Charlie charlie...@gmail.com wrote: problem is events won't trigger on new element introduced to DOM after document ready has fired  unless you use live()  or livequery(),