js create element set attribute code example
Example 1: set attribute in javascript
//Fetch id from html
var a = document.getElementById("id");
//variable.setAttribute("Attributes","Properties:Values")
a.setAttribute("style", "visibility:hidden;");
Example 2: set attribute javascript
Element.setAttribute(name, value);