Does anyone know how to get the HTML out of an IFRAME I have tried several different ways:
document.getElementById(\'iframe01\').contentDocument.body.innerHT
If you take a look at JQuery, you can do something like:
$('#my_iframe').contents().find('html').html();
This is assuming that your iframe parent and child reside on the same server, due to the Same Origin Policy in Javascript.