aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-09-04 01:57:35 +0000
committerJohn Resig <jeresig@gmail.com>2007-09-04 01:57:35 +0000
commit139393fe0978e79c427ad13f1a03a10431ef95e5 (patch)
tree208a5f0ad79d2b978f7349990dac24dfec801e5e /src/selector
parent1ce8006d480ebd64350983a17be1cc2e3f043958 (diff)
downloadjquery-139393fe0978e79c427ad13f1a03a10431ef95e5.tar.gz
jquery-139393fe0978e79c427ad13f1a03a10431ef95e5.zip
Removed all inline documentation. The current version of all documentation is stored online, on the wiki: http://docs.jquery.com/
Diffstat (limited to 'src/selector')
-rw-r--r--src/selector/selector.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/selector/selector.js b/src/selector/selector.js
index f75bae3c4..4a5789337 100644
--- a/src/selector/selector.js
+++ b/src/selector/selector.js
@@ -94,12 +94,6 @@ jQuery.extend({
return cur;
},
- /**
- * @name $.find
- * @type Array<Element>
- * @private
- * @cat Core
- */
find: function( t, context ) {
// Quickly handle non-string expressions
if ( typeof t != "string" )
@@ -427,15 +421,6 @@ jQuery.extend({
return { r: r, t: t };
},
- /**
- * All ancestors of a given element.
- *
- * @private
- * @name $.parents
- * @type Array<Element>
- * @param Element elem The element to find the ancestors of.
- * @cat DOM/Traversing
- */
parents: function( elem ){
var matched = [];
var cur = elem.parentNode;
@@ -446,18 +431,6 @@ jQuery.extend({
return matched;
},
- /**
- * A handy, and fast, way to traverse in a particular direction and find
- * a specific element.
- *
- * @private
- * @name $.nth
- * @type DOMElement
- * @param DOMElement cur The element to search from.
- * @param String|Number num The Nth result to match. Can be a number or a string (like 'even' or 'odd').
- * @param String dir The direction to move in (pass in something like 'previousSibling' or 'nextSibling').
- * @cat DOM/Traversing
- */
nth: function(cur,result,dir,elem){
result = result || 1;
var num = 0;
@@ -469,15 +442,6 @@ jQuery.extend({
return cur;
},
- /**
- * All elements on a specified axis.
- *
- * @private
- * @name $.sibling
- * @type Array
- * @param Element elem The element to find all the siblings of (including itself).
- * @cat DOM/Traversing
- */
sibling: function( n, elem ) {
var r = [];