Open In App

Call a parent window function from an iframe

Last Updated : 19 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Did you ever want to call a code/website that belongs to the parent window, and that too from the child window? Well, some good news for new. You will be able to do your desired job. The window will get opened by using the iframe, and the communication could be done with the parent window from the child window.

To call a parent window function, use the following syntax and also refer to the code given below.
Syntax:

<a onclick="parent.abc();" href="#" > Call the parent window here </a>

Example :




<!DOCTYPE html>
   
<html>
   
<head>
    <title>Calling a parent window function from an iframe</title>
   
    <script type="text/javascript"
    </script>
    <script type="text/javascript">
        $(function() {
            $('[id*=iframe1]').load(function() {
   
                //call here your javascript function
                myfunction();
            });
        });
   
        function myfunction() {
            alert('Function called after the IFrame load')
        }
    </script>
   
</head>
   
<body>
   
    <center>
        <h2 style="color:green">GeeksforGeeks</h2>
        <p>Calling a parent window function from an iframe</p>
        <form id="form1" runat="server">
            <div>
                <!-- Calling a parent window function from an iframe -->
                <iframe id="iframe1" src="https://ide.geeksforgeeks.org/"
                        width="600" height="450" frameborder="0"
                              style="border:0" scrolling="no"></iframe>
            </div>
        </form>
    </center>
</body>
   
</html>


Output:



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads