iframe의 본문 내용을 얻는 방법
document.getElementById('iframe_id').contentWindow.document.body.innerHTML;
jQuery
$("#iframe_id").contents().find("body").html()