Friday, June 3, 2011

Changing parent window's url from iframe

Sometimes it is needed to change the parent window's url from iframe. It is pretty easy to do with javascript. You need to execute the following javascript from the iframe whenever you want to change parent window's url:
parent.location = "YOUR REDIRECT URL";
That's it.

No comments:

Post a Comment