JQuery Programmer Question: Download JQuery Programmer PDF

What is jQuery.holdReady() function?

Tweet Share WhatsApp

Answer:

► By using jQuery.holdReady() function we can hold or release the execution of jQuery's ready event.
► This method should be call before we run ready event.
► To delay the ready event, we have to call
jQuery.holdReady(true);

► When we want to release the ready event then we have to call
jQuery.holdReady(false);

► This function is helpful when we want to load any jQuery plugins before the execution of ready event.

For example
$.holdReady(true);
$.getScript("xyzplugin.js", function()
{
$.holdReady(false);
});

Download JQuery Programmer PDF Read All 201 JQuery Programmer Questions
Previous QuestionNext Question
What are the various ajax functions?How do you stop the currently-running animation?