Answers for "how to add attributes in document.createElement()"

3

javascript create element with attributes

var element = document.createElement("span");
element.setAttribute("style", "color: red");
document.body.appendChild(element);
Posted by: Guest on May-20-2020

Code answers related to "how to add attributes in document.createElement()"

Code answers related to "Javascript"

Browse Popular Code Answers by Language