user1465257
user1465257

Reputation: 21

How to trigger a external page load when a click happen inside an iframe?

I have a website that needs to logged from a external page that is inside an Iframe that is on fancybox window, but I want right after the user press the login button the main page that host the iframe reloads within loged website content, is possible?

Upvotes: 1

Views: 103

Answers (1)

Pedro Cordeiro
Pedro Cordeiro

Reputation: 2125

Inside your iframe:

<script>
    window.parent.location = "page_to_load.php";
</script>

Upvotes: 1

Related Questions