I have the below code to find elements with their class name:
// Get the element by their class name var cur_columns = document.getElementsByClassName(\'colu
You can you use a simple solution, just change the class, the HTML Collection filter is updated:
var cur_columns = document.getElementsByClassName('column'); for (i in cur_columns) { cur_columns[i].className = ''; }
Ref: http://www.w3.org/TR/2011/WD-html5-author-20110705/common-dom-interfaces.html