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

Is there any difference between $(".selector").size() and $(".selector").length ?

share|improve this question
14  
From the code: size: function() { return this.length; } :P – Matt Apr 29 '10 at 15:01

6 Answers

up vote 31 down vote accepted

No. size() returns length. By using length you only avoid one extra method call.

share|improve this answer

Length returns the same thing and is slightly faster according to the jQuery documentation.

Source: http://api.jquery.com/size/

share|improve this answer

They will both give you the same result but .length is slightly faster.

See http://api.jquery.com/size/:

The .length property is a slightly faster way to get this information.

share|improve this answer

Length is much faster.

See the tutorial size vs. length.

share|improve this answer

.size() is a Method call, which returns the length property. So you either call the method to return the property, or you retrieve the property directly.

The method (.size()) is probably the one you should be using, as it was most likely implemented to abstract away from the possibility of the length property being changed.

share|improve this answer
<script type="text/javascript">
$("document").ready(function(){

// Both length and size will return the same result but length is property and
// size is a method so it will take extra method call.
//length property

var len = $("p").length;
alert(len);

// size method

var siz = $("p").size();
alert(siz);

});
share|improve this answer

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.