go through all elements in javascript using for loop code example
Example: loop through dom elements javascript
//Loop thru DOM elements
var all = document.getElementsByTagName("*");
for (var i=0, max=all.length; i < max; i++) {
// Do something with the element here
}