|
JS: Iframe problem
I am using iframe structure as shown below
Main Window
----IFrame 1 (inside main window)
--------Iframe 2 (inside Iframe1)
----------------Iframe 3 (inside Iframe2)
From Iframe2, to call Iframe3 I am using following code
---------------
var obj = window.frames["Iframe3"];
---------------
Above code is throwing error as shown below
In IE 6 - Permission Denied.
In IE 7 - Object Expected.
In Firefox - Working fine.
One more infomation :
I am using Iframe SRC of same domain. (not external link is there).
Can anybody help me. Its urgent?
Thanks in advance
|