how to add attribute to to select javascript code example
Example: 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", "");