$(iframe.contentDocument).ready(...)
I wish jQuery.ready() supported iframes or popup windows, e.g.
$(iframe.contentDocument).ready(...);
- or -
var window = open('http://example.com/');
$(window).ready(...);
I opened this feature request,
http://dev.jquery.com/ticket/5511Ran into a situation where I wished for it again today