I been trying to find the proper way to create and element and add an attribute so that i can loop them over the entire page (say a repeating image or something) but this is all i could come up with. Is there like a better best practice way of doing this. I feel like there is. I also feel like I did this the cheap way.
var i;
for (i=0; i < 100; i++) {
var div = document.createElement("div");
div.innerHTML = "<img src='images/mdn.png'>";
document.body.appendChild(div);
}
Thanks guys, all really helpful answers but I guess I should've been more specific. I'm trying to create and image element, add the src attribute to add multiple times inside the body so that my page is full of little mozilla heads. (also with a float: left style lol). The div part was just code I got from this site: https://www.javascripttutorial.net/javascript-dom/javascript-createelement/. Only way i figured out how to multiply the element.
The easier and cleaner way that I know is :
in this way you can make your own custom images and you can set custom attributes on
div
andimage
tags.