Reputation: 21
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
Reputation: 2125
Inside your iframe:
<script>
window.parent.location = "page_to_load.php";
</script>
Upvotes: 1