how to change an attribute value in dom code example
Example 1: javascript update attribute
var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
Example 2: set attribute in javascript
//Fetch id from html
var a = document.getElementById("id");
//variable.setAttribute("Attributes","Properties:Values")
a.setAttribute("style", "visibility:hidden;");