Home | History | Annotate | Download | only in lib

Lines Matching refs:ready

83         // The deferred used on DOM ready
86 // The ready event handler
199 // Shortcut for document ready
201 return rootjQuery.ready( selector );
277 ready: function( fn ) {
403 // Is the DOM ready to be used? Set to true once it occurs.
407 // the ready event fires. See #6781
410 // Hold (or release) the ready event
415 jQuery.ready( true );
419 // Handle when the DOM is ready
420 ready: function( wait ) {
421 // Either a released hold or an DOMready/load event and not yet ready
425 return setTimeout( jQuery.ready, 1 );
428 // Remember that the DOM is ready
431 // If a normal DOM Ready event fired, decrement, and wait if need be
439 // Trigger any bound ready events
441 jQuery( document ).trigger( "ready" ).unbind( "ready" );
453 // Catch cases where $(document).ready() is called after the
456 // Handle it asynchronously to allow scripts the opportunity to delay ready
457 return setTimeout( jQuery.ready, 1 );
466 window.addEventListener( "load", jQuery.ready, false );
475 window.attachEvent( "onload", jQuery.ready );
478 // continually check to see if the document is ready
919 // Cleanup functions for the document ready method
923 jQuery.ready();
931 jQuery.ready();
936 // The DOM ready check for Internet Explorer
952 jQuery.ready();
3088 ready: {
3089 // Make sure the ready event is setup
6539 // This hook cannot be added until DOM ready because the support test
6540 // for it is not run until after DOM ready