I have a page:
<html> <head></head> <body> <iframe src="local.html"></iframe> <iframe src="http://www.google.com"></iframe> </body> </html>
I used the DOM to access the first iframe as a test (node.documentWindow), but when I try to use a similar iframe in external Firebug reports, access is denied.
I suspect this is for XSS protection, but is there a “safe” way to import a node so that I can grab an element from this external page? Is there a way to learn “document as visualized” or something else?
Thanks!
source share