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 returns the number of elements matched by the jQuery selector.

Syntax

$(selector).size()