js copier un div

// Get the element
var elem = document.querySelector('#elem1');

// Create a copy of it
// The 'true' is to allow nested elements to be copied as well
var clone = elem.cloneNode(true);
Uber-Dan