class selector
Description: Selects all elements with the given class.
-
version added: 1.0jQuery( ".class" )
class: A class to search for. An element can have multiple classes; only one of them must match.
For class selectors, jQuery uses JavaScript's native getElementsByClassName()
function if the browser supports it.
Examples:
Example: Finds the element with the class "myClass".
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
|
Example: Finds the element with both "myclass" and "otherclass" classes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
|