javascript createelement set attributes code example
Example 1: javascript create element with attributes
var element = document.createElement("span");
element.setAttribute("style", "color: red");
document.body.appendChild(element);
Example 2: setAttribute()
element.setAttribute(name, value);
element.setAttribute("style", "background-color: red;");