element selector
Description: Selects all elements with the given tag name.
-
version added: 1.0jQuery( "element" )
element: An element to search for. Refers to the tagName of DOM nodes.
JavaScript's getElementsByTagName()
function is called to return the appropriate elements when this expression is used.
Example:
Finds every DIV element.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
|