Skip to content

Instantly share code, notes, and snippets.

@dashersw
Created September 26, 2011 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dashersw/1241866 to your computer and use it in GitHub Desktop.
Save dashersw/1241866 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]++;
});
tags;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment