javascript - How to add iframe content to main page? -
Actually I have IFrame in which it has some important content, but the problem is how do I add content to my page Thank you that iframe is stays in the main page html, then you can get the content of iframe using the following work
.
function getContentFromIframe (iFrameName) {var myiframe = document.getElementById (iFrameName); Var content = myIFrame.contentWindow.document.body.inner HTML; // what you need with content}
Check out more details:
Comments
Post a Comment