1$('#box').append(
2 $('<div/>')
3 .attr("id", "newDiv1")
4 .addClass("newDiv purple bloated")
5 .append("<span/>")
6 .text("hello world")
7);
1 $('#div_id').append(
2 $('<div/>', {'id': 'child_div', 'class': 'className','style':'width: 100%; height: 100%;'})
3 );