Skip to content

Commit

Permalink
Fixed list of destructive methods in end() docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Feb 27, 2007
1 parent 757138f commit 1c42201
Showing 1 changed file with 4 additions and 24 deletions.
28 changes: 4 additions & 24 deletions src/jquery/jquery.js
Expand Up @@ -774,30 +774,10 @@ jQuery.fn = jQuery.prototype = {
* If there was no destructive operation before, an empty set is returned.
*
* A 'destructive' operation is any operation that changes the set of
* matched jQuery elements. These functions are:
* These functions are:
*
* <code>add</code>
*
* <code>children</code>
*
* <code>clone</code>
*
* <code>filter</code>
*
* <code>find</code>
*
* <code>not</code>
*
* <code>next</code>
*
* <code>parent</code>
*
* <code>parents</code>
*
* <code>prev</code>
*
* <code>siblings</code>
* matched jQuery elements. These functions are: <code>add</code>,
* <code>children</code>, <code>clone</code>, <code>filter</code>,
* <code>find</code>, <code>not</code>, <code>next</code>,
* <code>parent</code>, <code>parents</code>, <code>prev</code> and <code>siblings</code>.
*
* @example $("p").find("span").end();
* @before <p><span>Hello</span>, how are you?</p>
Expand Down

0 comments on commit 1c42201

Please sign in to comment.