function includeHTML() { var z, i, elmnt, file; /* Loop through a collection of all HTML elements: */ z = document.getElementsByTagName("div"); for (i = 0; i < z.length; i++) { elmnt = z[i]; /*search for elements with a certain atrribute:*/ attr = elmnt.getAttribute("ethos-arch"); if (attr=='ethos-arch') { elmnt.innerHTML=''; return; } } } includeHTML();