How to Append a div with javascript inside
- by Damathryx
I have this
<div id="inprog_table">
</div>
I tried this to insert
var div = document.getElementById('inprog_table');
div.innerHTML = div.innerHTML+
"<div class='row'>
<div class='col-xs-7'>
"+ $(".row.active .col-xs-7 p:first-child").text()+"
</div>
<div class='col-xs-2'>
"+ $(".row.active .col-xs-7 p:last-child").text()+"
</div>
<div class='col-xs-2'>
1
</div>"
inside inprog_table div. I know it's really wrong, but I don't know how to append all of this.