<label class = "label">Title:</label> <input type = "text" size = 50>
to a div like this:
<div></div>
How do i put that inside of the div?
Thanks!
Posted 13 February 2012 - 01:19 PM
<label class = "label">Title:</label> <input type = "text" size = 50>
<div></div>
Posted 14 February 2012 - 11:07 PM
var newText = document.createTextNode("This is a text item"); document.body.appendChild(newText);