up vote 0 down vote favorite
share [g+] share [fb]

hy i have a index.php with a form, after i submit the form with a iframe to a page.php, a loading process appears

in page.php when execute the first function i want javascript to execute a function in index.php, the page who is visualized!

when execute the second function i want javascript to execute another function in index.php

how to code this?

if () {
        //execute a function but meanwhile send a response to index.php like this:
        echo '<script language="javascript" type="text/javascript">window.top.window.function();</script>';
        function ();

        if () {
           //execute a function but meanwhile send a response to index.php like this:
           echo '<script language="javascript" type="text/javascript">window.top.window.function();</script>';
            function ();

        } else {
            echo $something;
        }

    } else {
       echo $something;
    }
link|improve this question
This question was asked on SO already stackoverflow.com/questions/2196263/… (by the same user just on superuser). – Gordon Tucker Feb 4 '10 at 17:40
feedback

migrated from superuser.com Feb 4 '10 at 6:42

This question came from our site for computer enthusiasts and power users.

2 Answers

in page.php use parent.functionname

Ex.

index.php has a function show() you can access from page.php as parent.show()

link|improve this answer
feedback

like this:

echo '<script language="javascript" type="text/javascript">parent.show();</script>';

??

link|improve this answer
i try in all the ways, echo outputs all at once not one by one! <script language="javascript" type="text/javascript">window.top.window.function();</script><script language="javascript" type="text/javascript">window.top.window.function();</script><script language="javascript" type="text/javascript">window.top.window.function();</script> – robert Feb 4 '10 at 16:23
feedback

Your Answer

 
or
required, but never shown