Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am doing a presentation shortly about selectors on websites. Is there an app, firefox plugin or something which allows me to count the number on a website?

I found this javascript (link) which works on some websites but not others like BBC and Facebook.

Any help is much appreciated.

Dave.

share|improve this question
by the css selector do you mean the class and id on the webpage??? – jimy May 27 '11 at 13:16

2 Answers

up vote 1 down vote accepted

Try this:

Firebug CSS Usage

share|improve this answer

In the Firebug console or Webkit Inspector console just type:

document.querySelectorAll('*').length;
share|improve this answer
1  
Doesn't this count the number of elements in the DOM rather than the number of CSS selectors? – Rich Bradshaw Jul 18 '12 at 18:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.