Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Count elements with jQuery

hi there,

i was considering, using jquery,

var n = 0;
$('.className').each(function(){
     n = n+1;
});

Any better solution in mind?

thanks!

share|improve this question

marked as duplicate by Felix Kling, Piskvor, Pointy, Jeremy Heiler, Graviton May 25 '11 at 15:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 11 down vote accepted

Use the length property:

$('.className').length
share|improve this answer

$('.className') is an array, so you can use .length.

$('.className').length
share|improve this answer

Use .length or .size properties:

$('.className').length

$('.className').size()
share|improve this answer

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