I\'ve tried some HTML DOM code from several sites, but it isn\'t working. It isn\'t adding anything. Does anyone have a working example on this?
this.img =
You need to use document.getElementById() in line 3.
document.getElementById()
If you try this right now in the console:
var img = document.createElement("img"); img.src = "http://www.google.com/intl/en_com/images/logo_plain.png"; var src = document.getElementById("header"); src.appendChild(img);
... you'd get this: