var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
element.setAttribute(name, value);
var d = document.getElementById("d1");
d.setAttribute("align", "center");
make
select color = onchange = changeBG(this)
div content chat id = bodyQ
select = onchange = select_q
button id = insertQ
var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
----------
element.setAttribute(<name>, <value>);
// ex
var aElement = document.querySelector("a");
aElement.setAttribute("href", "https://isitchristmas.com/");
-----
var a = document.getElementById("id");
xx.className = "MyClass"
//variable.setAttribute("Attributes","Properties:Values")
a.setAttribute("style", "visibility:hidden;");
-----------
element.setAttribute(name, value);
element.setAttribute("style", "background-color: red;");
----
Element.setAttribute(name, value);
----------
document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");