You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<desc>A zero-based integer indicating which element to retrieve.</desc>
10
10
</argument>
11
11
</signature>
12
+
<signature>
13
+
<added>1.0</added>
14
+
</signature>
12
15
<desc>Retrieve the DOM elements matched by the jQuery object.</desc>
13
16
<longdesc>
14
-
<p>The <code>.get()</code> method grants us access to the DOM nodes underlying each jQuery object. Suppose we had a simple unordered list on the page:</p>
17
+
<p>The <code>.get()</code> method grants us access to the DOM nodes underlying each jQuery object. Consider a simple unordered list:</p>
15
18
<pre><code>
16
19
<ul>
17
20
<li id="foo">foo</li>
18
21
<li id="bar">bar</li>
19
22
</ul>
20
23
</code></pre>
21
-
<p>Without a parameter, <code>.get()</code> returns all of the elements:</p>
22
-
<pre><code>alert($('li').get());</code></pre>
23
-
<p>All of the matched DOM nodes are returned by this call, contained in a standard array:</p>
0 commit comments