FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

jQuery Misc size() Method

jQuery Misc Methods jQuery Misc Methods

Example

Alert the number of elements matched by the jQuery selector:

$("button").click(function(){
    alert($("li").size());
});
Try it Yourself »

Definition and Usage

The size() method was deprecated in jQuery version 1.8. Use the length property instead.

The size() method returns the number of elements matched by the jQuery selector.


Syntax

$(selector).size()

jQuery Misc Methods jQuery Misc Methods