Skip to content

Instantly share code, notes, and snippets.

@fatihacet
Forked from dashersw/getdomcount.js
Created October 14, 2011 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatihacet/1287382 to your computer and use it in GitHub Desktop.
Save fatihacet/1287382 to your computer and use it in GitHub Desktop.
get dom element counts by tag name with jquery
var tags = {};
$("*").each(function(item) {
if (!tags[this.tagName]) {
tags[this.tagName] = 0;
}
tags[this.tagName]++;
});
console.dir(tags);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment