Get the document from an iframe

0

I'm trying to get the document from an iframe that is being loaded from the same server but what I get is a about:blank

// node es el iframe
var iframeDocument = node.contentDocument || node.contentWindow.document;
console.log("IFRAME", document_iframe);

and the result is:

HTMLDocument about:blank
    
asked by Mengano 08.06.2018 в 00:50
source

0 answers