Skip to content

Commit 7cd5ae8

Browse files
biziclopdmethvin
authored andcommitted
"Returning an Empty Set" clarifications (jquery#1137)
Fixes jquery#1136
1 parent 25b47f5 commit 7cd5ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/jQuery.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ $.post( "url.xml", function( data ) {
7777
<p>When a jQuery object is passed to the <code>$()</code> function, a clone of the object is created. This new jQuery object references the same DOM elements as the initial one.</p>
7878

7979
<h4 id="returning-empty-set">Returning an Empty Set</h4>
80-
<p>As of jQuery 1.4, calling the <code>jQuery()</code> method with <em>no arguments</em> returns an empty jQuery set (with a <code><a href="/length/">.length</a></code> property of 0). In previous versions of jQuery, this would return a set containing the document node.</p>
80+
<p>Calling the <code>jQuery()</code> method with <em>no arguments</em> returns an empty jQuery set (with a <code><a href="/length/">.length</a></code> property of 0). Similarly, if an argument of <code>null</code>, <code>undefined</code>, an empty array (<code>[]</code>), or an empty string (<code>""</code>) is passed, the set contains no elements.</p>
8181
<h4 id="working-with-plain-objects">Working With Plain Objects</h4>
8282
<p>At present, the only operations supported on plain JavaScript objects wrapped in jQuery are: <code>.data()</code>,<code>.prop()</code>,<code>.on()</code>, <code>.off()</code>, <code>.trigger()</code> and <code>.triggerHandler()</code>. The use of <code>.data()</code> (or any method requiring <code>.data()</code>) on a plain object will result in a new property on the object called jQuery{randomNumber} (eg. jQuery123456789).</p>
8383
<pre><code>

0 commit comments

Comments
 (0)