Answers for "create attribute js"

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
0

attribute in javascript

elem.hasAttribute(name) //checks for existence.
elem.getAttribute(name) //gets the value.
elem.setAttribute(name, value) //sets the value.
elem.removeAttribute(name) //removes the attribute.
elem.attributes //collection of all attributes.
Posted by: Guest on May-18-2021
2

set property dom javascrpt

document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
Posted by: Guest on April-17-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language