Answers for "how to give attribute in javascript"

7

javascript add attribute

var element = document.getElementById('btnBuild');
element.setAttribute("disabled", "disabled");
Posted by: Guest on June-23-2021
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

Code answers related to "how to give attribute in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language