Using jQuery, is there a way to retrigger the document.ready trigger at some point after a page has loaded?
document.ready
Update: jQuery sheds them once they are run.
Easy: you just need to disable the safety-flag jQuery.isReady. Set jQuery.isReady to false and use jQuery(document).trigger('ready') to re-trigger this event. That's quite useful for turbolinks-style navigation.