document.getElementById(id).attribute = new value code example
Example 1: javascript change attribute
var element = document.getElementById("elemId");
element.setAttribute("attributeName", "value");
Example 2: get element by id in javascript
document.getElementById("YourElementId");