diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-14 22:37:33 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-14 22:37:33 +0000 |
commit | 677483ce44de3e4a34f4cfcce04df2387d078a86 (patch) | |
tree | a23fbffbd2cbe6c74fe401a184d4affdeea6d7a6 /src | |
parent | c6a893b68001be9b9389de5e2c5ea58c1a28c742 (diff) | |
download | jquery-677483ce44de3e4a34f4cfcce04df2387d078a86.tar.gz jquery-677483ce44de3e4a34f4cfcce04df2387d078a86.zip |
Removed useless and misleading example
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 108e9a39f..e46fc7386 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -122,11 +122,6 @@ var $ = jQuery; * This function also accepts XML Documents and Window objects * as valid arguments (even though they are not DOM Elements). * - * @example $(document).find("div > p") - * @before <p>one</p> <div><p>two</p></div> <p>three</p> - * @result [ <p>two</p> ] - * @desc Same as $("div > p") because the document - * * @example $(document.body).background( "black" ); * @desc Sets the background color of the page to black. * |