.size() Returns: Number version deprecated: 1.8
Description: Return the number of elements in the jQuery object.
-
version added: 1.0.size()
-
This method does not accept any arguments.
-
The .size()
method is deprecated as of jQuery 1.8. Use the .length
property instead.
The .size()
method is functionally equivalent to the .length
property; however, the .length
property is preferred because it does not have the overhead of a function call.
Given a simple unordered list on the page:
1
2
3
4
|
|
Both .size()
and .length
identify the number of items:
1
2
|
|
This results in two alerts:
Size: 2
Size: 2
Example:
Count the divs. Click to add more.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
|