how to change attribute value in js code example
Example 1: javascript update attribute
var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
Example 2: javascript setattribute
element.setAttribute(<name>, <value>);
var aElement = document.querySelector("a");
aElement.setAttribute("href", "https://isitchristmas.com/");
Example 3: put new attribute on html tag using javascript
span.setAttribute("style", "width:110%;float:center;left-margin:-10px;top-margin:-10;");