// Used for detecting and trimming whitespace
core_rnotwhite = /\S/,
core_rspace = /\s+/,
-
+
// List of deleted data cache ids, so we can reuse them
core_deletedIds = [],
},
slice: function() {
- return this.pushStack( core_slice.apply( this, arguments ),
- "slice", core_slice.call(arguments).join(",") );
+ return this.pushStack( core_slice.apply( this, arguments ) );
},
first: function() {
}
if ( typeof data === "string" ) {
-
+
// Make sure leading/trailing whitespace is removed (IE can't handle it)
data = jQuery.trim( data );
}
// Needed because $( selector, context ) becomes $( context ).find( selector )
- ret = this.pushStack( jQuery.unique( ret ) );
ret.selector = ( this.selector ? this.selector + " " : "" ) + selector;
- return ret;
+ return this.pushStack( jQuery.unique( ret ) );
},
has: function( target ) {
}
}
- ret = ret.length > 1 ? jQuery.unique( ret ) : ret;
-
- return this.pushStack( ret );
+ return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret );
},
// Determine the position of an element within