Assuming you have
<iframe id="iframeID" ...></iframe>
Iframe contains div with id=”someID”:
<div id="someID">Hello world!</div>
Need get div’s text?
$('#iframeID').contents().find('#someID').html();
JustClick is a small web development and graphic design studio based in Melbourne, Australia. Combining simplicity with usability, we will provide you with the best design.
Assuming you have
<iframe id="iframeID" ...></iframe>
Iframe contains div with id=”someID”:
<div id="someID">Hello world!</div>
Need get div’s text?
$('#iframeID').contents().find('#someID').html();