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 want to count how many checkboxes a user has selected. For example, from a group of 10 checkboxes if he selects 5, then I want to be able to count it. Using the line:

$(":checkbox:checked")

I can select all of the checked checkboxes, is there a way to get the count of all the elements that are returned by that statement as well?

share|improve this question

1 Answer

up vote 25 down vote accepted

Use the size() method or the length property. The length property is preferred as it is faster.

Example:

var count = $("[type='checkbox']:checked").length;
share|improve this answer
thanks, didn't know length could be used with jquery – Click Upvote May 16 '09 at 12:18
1  
use input before :checkbox, as without that it is evaluated as *:checkbox which makes execution slow – Sankaran Jun 16 '12 at 10:15
I just reused his example. I've updated it with the preferred selector taking advantage of the native DOM methods since :checkbox has been deprecated. – tvanfosson Jun 16 '12 at 12:44

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.