how to create multiple box using jquery? part 2
how to create multiple box using jquery? part 2
HTML
<div id="panel" style="display:inline; float:left;position: relative; width: 140px; height: 200px; border:solid 2px; border-color: red;cursor: pointer;"></div>
JavaScript
noC =2;
for(i= 0; i < noC;i++) {
$("body").append($("#panel:first").clone());
}