how to add attribute in body through javascript code example
Example 1: javascript change attribute
var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
Example 2: set attribute javascript
Element.setAttribute(name, value);