Answers for "how to change value of attribute js"

0

how to add attribute to selected element in javascript

// Selecting the element
    var btn = document.getElementById("myBtn");
	
    // Setting new attributes
    btn.setAttribute("class", "click-btn");
    btn.setAttribute("disabled", "");
Posted by: Guest on June-03-2020
12

setAttribute()

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

Code answers related to "how to change value of attribute js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language