Answers for "how to set any attribute in javascript"

11

javascript change attribute

var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
Posted by: Guest on June-03-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
14

set attribute javascript

Element.setAttribute(name, value);
Posted by: Guest on March-02-2020
1

set attribute in javascript

//Fetch id from html
var a = document.getElementById("id");

//variable.setAttribute("Attributes","Properties:Values")
a.setAttribute("style", "visibility:hidden;");
Posted by: Guest on May-22-2021
0

change attribute of an element javascript

document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
Posted by: Guest on September-10-2021

Code answers related to "how to set any attribute in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language