js how to change attributes of an element code example
Example 1: javascript update attribute
var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
Example 2: setattribute
Element.setAttribute(name, value);