How can I using javascript make clone of some and set his id different from original. Jquery also will be nice.
and set his id different from original. Jquery also will be nice.
var div = document.getElementById('div_id'), clone = div.cloneNode(true); // true means clone all childNodes and all event handlers clone.id = "some_id"; document.body.appendChild(clone);