Cómo agregar atributo al elemento seleccionado en JavaScript
// Selecting the element
var btn = document.getElementById("myBtn");
// Setting new attributes
btn.setAttribute("class", "click-btn");
btn.setAttribute("disabled", "");
Gogo Dev