Is it possible to access iframe's javascript objects from javascript of parent page?
|
|
try this.I assume your iFrame's id is "targetFrame" and the object you want to call is targetObject and also they are same domain.If they are not same domain i think it is not possible.:
|
|||||
|
|
If the iframe src is not in the same origin/domain as the parent you'd have restrictions because of the same-origin-policy (security policy) https://developer.mozilla.org/en/Same_origin_policy_for_JavaScript The policy is planned to block accessing private data such as CSRF tokens and other Private data stored in the frame, for example if you build an html page with an iframe of bank.com then when people get into your site if they are logged into bank.com their private data will be stored in the iframe for that reason same-origin-policy will block different origins from accessing eachother's data through iframes. |
|||
|
|
|
You can also access the objects of child iframe using the parent's window object.
It will show the value of variable, variable_name, from the first iFrame. The index of frames list can be used to access the values of variables across frames. |
|||
|
|
