how to change value of attribute js code example
Example 1: 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", "");
Example 2: setAttribute()
element.setAttribute(name, value);
element.setAttribute("style", "background-color: red;");