how get content of Iframe at 3 edition?
metod isn't work at 3rd edition:
Code:document.getElementById('my_frame').contentDocument.body.innerHTML;
how get content of Iframe at 3 edition?
metod isn't work at 3rd edition:
Code:document.getElementById('my_frame').contentDocument.body.innerHTML;
Last edited by brodjag; 2010-03-17 at 14:36.
I would try this way, using contentWindow instead.
If not, not.
function getIframeContent(iFrameId)
{
var myIFrame = document.getElementById(iFrameId);
var content = myIFrame.contentWindow.document.body.innerHTML;
// Do some funky stuff (:
// or just return..
return content;
}