Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two frames loaded from local filesystem with file:// URL. How can I access the document in the left frame from the right frame? parent.leftFrame.document gives:

"Error: Permission denied to get property Window.document"

I went through several articles explaining Same origin policy for JavaScript but those didn't help with files loaded from local filesystem

The document.domain property for both of my frames are empty.

On Linux with Firefox 3.

share|improve this question
Is the surrounding document or frameset also a file:/// ? – Pekka 웃 Nov 17 '09 at 13:49
Yes, the frameset is also loaded from local file. If the files loaded into the frames are in exactly the same folder then access to the other frame works in Firefox. Otherwise I got the "Permission denied" error. Isn't there a way to overcome this limitation in FF? – Atos Nov 18 '09 at 13:25
E.g. in Opera cross-frame JavaScript seems to work even if the files are in different directories. – Atos Nov 18 '09 at 13:27

1 Answer

Finally I found security.fileuri.strict_origin_policy preference in Firefox that solves the problem.

Needle in a haystack...

share|improve this answer
It is from this forum: forums.mozillazine.org/… – Atos Nov 18 '09 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.