You can use jQuery.isReady
, but it's undocumented and should be avoided.
If you just need to run something after the DOM is ready, you can just call
$(document).ready(function() {
...
});
as normal – that will run the code immediately if the DOM is ready and wait until it is if not.