I have two divs on my website. They both share the same css properties, but one of them holds 24 other divs. I want all of these 24 divs to be copied into the other div. Thi
var divs = document.getElementById('mydiv1').innerHTML; document.getElementById('mydiv2').innerHTML= divs;