What version of jQuery are you using? Are you getting an error
message? Are you trying to clone a table row? jQuery 1.2.2 has a known
issue with cloning a table row and a few other elements. The current
SVN and jQuery 1.2.3a resolves this issue. Please try using jQuery
1.2.3a to see if that resolves the issue you are having. Otherwise,
see if you can create an example for us to look at.

--
Brandon Aaron

On Jan 29, 9:13 am, Eridius <[EMAIL PROTECTED]> wrote:
> my code:
>
> var append_to = self.element.children('.cr_tab_content');
> var clone_element = self.element.children('#' + id).clone(true)
> $(clone_element).appendTo(append_to);
>
> When I do this my element is still empty but should be filled with the
> cloned element
>
> var append_to = self.element.children('.cr_tab_content');
> var clone_element = self.element.children('#' + id).clone(true)
> $(append_to).append(element.html());
>
> work fine but I want to make sure and events are carried over.  any help
> please?
> --
> View this message in 
> context:http://www.nabble.com/.clone-not-work-in-FF-or-IE%2C-please-help-tp15...
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to