Answers for "append attribute in javascript"

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
12

setAttribute()

element.setAttribute(name, value);
element.setAttribute("style", "background-color: red;");
Posted by: Guest on April-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language