Created
September 26, 2011 08:36
-
-
Save dashersw/1241866 to your computer and use it in GitHub Desktop.
get dom element counts by tag name with jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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