[jQuery] JQuery.isReady property

[jQuery] JQuery.isReady property


JQuery.isReady is NOT documented, but I have a valid use case for it
and was wondering if there is a documented way of doing the same
thing.
I have a case where some code could be loaded as the page loads, but I
don't have a particular function to fire until the document isReady.
The same code could also be loaded in a context after the page loads
(Injected into the dom)
if (JQuery.isReady)
{
//Call function explicitly
}
else
{
//Call function on document.ready()
}