vote up 1 vote down star
1

Using jQuery, is there a way to retrigger the document.ready trgger at some point after a page has loaded?

update: jQuery sheds them once they are run. In my experiments it looks like jQuery will run a ().ready callback as soon as it is encountered once the initial ready event is triggered.

flag

5 Answers

vote up 6 vote down check

EDIT: If you just need to make sure that new initialization functions get run, you don't need to do anything. When you add a new event handler in $().ready, after the document finishes loading, it will run immediately.

You should be able to use the trigger method.

$().trigger("ready")

EDIT: Apparently, this doesn't work because jQuery resets the ready event handlers after it runs them. You will need to keep track of the functions you need to call, and call them directly as below.

Of course, it might be better to just call the function directly, so you don't re-run something you didn't intend to (some plugins might have their own $().ready() functions that they don't expect to run twice).

$().ready(initializationFunction);

// later:
initializationFunction(jQuery);
link|flag
+1 for calling it directly – Kiv Feb 20 at 16:31
vote up 0 vote down

ASP.Net UpdatePanel partial page loads are another place where one might want to re-trigger loading functionality - not that $().ready is the right place to do that. In that case, you can either use page_load or the MS framework's endrequest event.

link|flag
vote up 0 vote down

I can see one scenario where this would be very useful, that is if you delay loading jQuery until everything else has loaded, then you dynamically append a new script element to load jQuery.

In this case, $(document).ready is not always triggered, since in many cases the document will have completely loaded before jQuery is done loading and has set up the right event handlers.

You could use named functions and call those instead, but it would still break any plugin that relies on $(document).ready.

link|flag
vote up 0 vote down

You should be able to with document.ready.apply();

link|flag
vote up 1 vote down

Aaron - what would you be trying to accomplish, reinitializing variables?

Edited... The beauty of jQuery in my opinion is the call back functions. Why not just have some action/function executed after the event.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.