So I have a variable in my iframe like so:
<script>
var zipphone = "<?= $phone ?>";
</script>
Now I want to pass that variable to the parent frame after the iframe is loaded. What is the simplest way to do that?
|
So I have a variable in my iframe like so:
Now I want to pass that variable to the parent frame after the iframe is loaded. What is the simplest way to do that? |
|||
|
|
If the pages are both on the same domain, you could call a function of the parent window:
In the parent window, you could define a function like this:
|
|||||
|