how to add id to a div using javascript code example
Example 1: add id to element javascript
myPara.setAttribute("id", "id_you_like");
Example 2: how do i set an id for a div in js
All currently used browsers:
element.id=id;
myElement.id=newId;
element.className=class;
myElement.className=newClassName;