var status = $('<div></div>');
var ar = [];
var o = [
{
id: 1,
text: 1
},
{
id: 2,
text: 2
},
{
id: 3,
text: 3
},
{
id: 4,
text: 4
}
];
o.forEach(function (e, i) {
var s = status;
s.append(e.text);
ar.push(status);
});
o.forEach(function (e, i) {
var s = status.clone();
s.append(e.text);
ar.push(s);
});