I'm trying to get the height of an <iframe>d document. My first instincts were:
$('iframe').document.height();
or
$('iframe').contentWindow.document.height();
Those don't work, and I'm not having much luck searching. I would appreciate any help!