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 = document.createElement("img");
this.img.src = "img/eqp/"+this.apparel+"/"+this.facing+"_idle.png";
src = getElementById("gamediv");
src.appendChild(this.img)
But it isn’t adding anything to the div gamediv. I’ve tried document.body as well, with no result.
You need to use
document.getElementById()in line 3.If you try this right now in the console:
… you’d get this: