I am doing this first time. I have created an iframe on my page and I want the text from the iframe through jquery. Here is my code :<
iframe
jquery
Use .contents() to get to iFrame's DOM.
$('#myIframe').contents()
UPDATE:
In the OP:
$("#result").html(iframeContent.find('body').html);
Should say:
$("#result").html(iframeContent.find('body').html());