I need list of classes used in an html file. Is there any tool where i can get list of classes in the HTML file?
If you've got jQuery on the page, run this code:
var classArray = []; $('*').each(function(){if(this.className!=""){classArray.push(this.className)}})
The variable classArray will contain all the classes specified on that HTML page.