vote up 1 vote down star

Hi,

i am looking for some tipps how to solve my problem.

I habe a html element (like select box input field) in a table. Now i want to copy the object and generate a new one out of the copy, and that with JavaScript or jQuery. I think this should work somehow but i´m a little bit clueless at the moment.

Something like this (pseudo code):

oldDdl = $("#ddl_1").get();

newDdl = oldDdl;

oldDdl.attr('id', newId);

oldDdl.html();

flag

78% accept rate

5 Answers

vote up 2 vote down check

Look at the clone() method of JQuery

Using your code you can do something like that:

$('#ddl_1').clone().attr('id',newId).appendTo('p'); // append to where you want
link|flag
vote up 2 vote down

It's actually very easy in jQuery:

$("#ddl_1").clone().attr("id",newId).appendTo("body");

Change .appendTo() of course...

link|flag
+1 you beat me! – DrJokepu May 28 at 15:01
vote up 0 vote down

In one line:

$('#selector').clone().attr('id','newid').appendTo('#newPlace');
link|flag
vote up 2 vote down

With native javascript:

newelement = element.cloneNode(bool)

where the boolean indicates whether to clone child nodes or not

link|flag
vote up 0 vote down

Thank you guys (all of you), worked flawlessly.

link|flag
You shouldn't say thank you with an answer, accepting the answer and vote up is enough ! You're welcome, anyway. – bgy May 28 at 15:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.