Hold your flaming for a re-post, as I have not found anything pertinent yet.
I'm working in a series of nested frames that are intended to be burnt to DVD.
At the most relevant level, I have a frameset of two frames that gets pulled into a frame.
The problem I am encountering is that in one of these two frames, we'll call it the 'controlFrame', I need to make a JS call to the 'mediaFrame'.
As it stands I am 'reaching' for it like so:
top.mediaFrame.document
And am encountering the above mentioned error; JavaScript attempt to access frame with URL ... from frame with URL ...
I understand the implications of cross-domain security in frames, and this is completely reasonable. What I fail to understand is why when these files are in fact located in the same directory, and are being referenced relatively, would this error arise?
Explicitly, the error states that Domains, protocols and ports must match.
, but I am still receiving this error even when that is clearly the case.
Any thoughts would be marvelous.