Lines Matching refs:args

244 	each: function( callback, args ) {
245 return jQuery.each( this, callback, args );
550 each: function( object, callback, args ) { argument
555 if ( args ) {
558 if ( callback.apply( object[ name ], args ) === false ) {
564 if ( callback.apply( object[ i++ ], args ) === false ) {
2336 function trigger( type, elem, args ) { argument
2337 args[0].type = type;
2338 return jQuery.event.handle.apply( elem, args );
2442 var args = arguments, i = 1;
2445 while ( i < args.length ) {
2446 jQuery.proxy( fn, args[ i++ ] );
2458 return args[ lastToggle ].apply( this, arguments ) || false;
2529 var stop, elems = [], selectors = [], args = arguments,
2581 if ( match.handleObj.origHandler.apply( match.elem, args ) === false ) {
4261 domManip: function( args, table, callback ) { argument
4262 var results, first, value = args[0], scripts = [], fragment, parent;
4267 jQuery(this).domManip( args, table, callback, true );
4274 args[0] = value.call(this, i, table ? self.html() : undefined);
4275 self.domManip( args, table, callback );
4287 results = buildFragment( args, this, scripts );
4352 function buildFragment( args, nodes, scripts ) { argument
4360 …if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && doc === document …
4361 !rnocache.test( args[0] ) && (jQuery.support.checkClone || !rchecked.test( args[0] )) ) {
4364 cacheresults = jQuery.fragments[ args[0] ];
4374 jQuery.clean( args, doc, fragment, scripts );
4378 jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
5293 function trigger(type, args) { argument
5294 (s.context ? jQuery(s.context) : jQuery.event).trigger(type, args);