[jQuery] Re: Manipulating content generated after $(document).ready

2008-04-30 Thread Matt Henry
Morgan Karl: Thanks very much for your help. On Apr 29, 7:46 pm, Karl Swedberg [EMAIL PROTECTED] wrote: The .clone() method can take an argument -- true -- that will copy the events as well. So, you can do $(this).clone(true) instead of $(this).clone(). There are other ways to achieve

[jQuery] Re: Manipulating content generated after $(document).ready

2008-04-29 Thread Morgan Allen
Just add the .click to the .clone() chain. On Tue, Apr 29, 2008 at 2:19 PM, Matt Henry [EMAIL PROTECTED] wrote: I'm wondering if it's possible to use jQuery to manipulate content that has been generated by jQuery after the page has loaded. Here's what I'm trying to accomplish: The user

[jQuery] Re: Manipulating content generated after $(document).ready

2008-04-29 Thread Karl Swedberg
The .clone() method can take an argument -- true -- that will copy the events as well. So, you can do $(this).clone(true) instead of $(this).clone(). There are other ways to achieve this as well, noted in the Frequently Asked Questions: