tadam logo
Did you find an error in the text?
Select this with mouse and press
Ctrl + Enter
Xhtml.co.il Check Spelling
Orphus system

jQuery.holdReady()

jQuery.holdReady( hold )

Returns:Boolean
Description: Holds or releases the execution of jQuery's ready event.

jQuery.holdReady( hold )

version added: 1.6
Indicates whether the ready hold is being requested or released.

The $.holdReady() method allows the caller to delay jQuery's ready event. This advanced feature would typically be used by dynamic script loaders that want to load additional JavaScript such as jQuery plugins before allowing the ready event to occur, even though the DOM may be ready. This method must be called early in the document, such as in the <head> immediately after the jQuery script tag. Calling this method after the ready event has already fired will have no effect.

To delay the ready event, first call $.holdReady(true). When the ready event should be released to execute, call $.holdReady(false). Note that multiple holds can be put on the ready event, one for each $.holdReady(true) call. The ready event will not actually fire until all holds have been released with a corresponding $.holdReady(false) and the normal document ready conditions are met. (See ready for more information.)

Example

Delay the ready event until a custom plugin has loaded.

$
.holdReady(true);
$
.getScript("myplugin.js", function() {
     $
.holdReady(false);
});
Was this information helpful?
   

Comments