I have the following HTML
#document ... Text I want to get is here
Assuming your iframe is in the same domain as your HTML:
var myIFrame = document.getElementById("myIframe"); var content = myIFrame.contentWindow.document.body.innerHTML;
Otherwise you'll face some Same Origin Policy issues.