Do you mean removing an item that has been cloned and then inserted
into the DOM? It's easy to do with .remove(), but you'll need to bind
the event handler after the element has been inserted. Details here:
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F
It talks about events after an ajax request, but the same applies to
plain DOM insertion.
--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jan 8, 2008, at 5:05 PM, yabado wrote:
I have seen examples of cloning items, but not how to remove them.
Is this possible with jQuery?
I like this example, but it is not built on JQ...
http://host.sonspring.com/cloner/
Has anyone done this using JQ?