I want to call a js function from iframe to a parent window
<script>
function abc()
{
alert("sss");
}
</script>
<iframe id=myFrame>
<a onclick="abc();" href=# >Call Me </a>
</iframe>
|
I want to call a js function from iframe to a parent window
|
||||
|
|
See window.parent Returns a reference to the parent of the current window or subframe. If a window does not have a parent, its parent property is a reference to itself. When a window is loaded in an |
||||
|
|
|
I recently had to find out why this didn't work too. The javascript you want to call from the child iframe needs to be in the head of the parent. If it is in the body, the script is not available in the global scope.
Hope this helps anyone that stumbles upon this issue again. |
|||||||||||||||
|
|
You can use
see the following.
|
|||
|
|
|
I have posted this as a separate answer as it is unrelated to my existing answer. This issue recently cropped up again for accessing a parent from an iframe referencing a subdomain and the existing fixes did not work. This time the answer was to modify the document.domain of the parent page and the iframe to be the same. This will fool the same origin policy checks into thinking they co-exist on exactly the same domain (subdomains are considered a different host and fail the same origin policy check). Insert the following to the
Please note that this will throw an error on localhost development, so use a check like the following to avoid the error:
|
|||||||||
|
|
parent.abc() will only work on same domain due to security purposes. i tried this workaround and mine worked perfectly.
Hope this helps. :) |
|||
|
|
|
The solution given by Ash Clarke for subdomains works great, but please note that you need to include the document.domain = "mydomain.com"; in both the head of the iframe page and the head of the parent page, as stated in the link same origin policy checks
|
|||||||
|
|
Another addition for those who need it. Ash Clarke's solution does not work if they are using different protocols so be sure that if you are using SSL, your iframe is using SSL as well or it will break the function. His solution did work for the domains itself though, so thanks for that. |
|||
|
|