tags:

views:

87

answers:

1

From my home page am showing a popupdiv.on submiting the popup form i need my home page to redirect.but my popup form is redirecting . How to make my home page redirect, after completing controller function.

Now am using $this->redirect(home/action)

A: 

You'll need to get a reference to the homepage through java script from the pop-up win:

window.opener.location.href = "new page";
Supertux