Rubytastic
Rubytastic

Reputation: 15491

redirect parent webpage from popup that loads a website that redirects?

Is there a way to have:

so:

Upvotes: 0

Views: 157

Answers (1)

BurakS
BurakS

Reputation: 53

yes, you can redirect main page from popup.

in popup page, you need to have a code like:

<script language=”javascript”>
top.location = "http://www.google.com";
</script>

Upvotes: 1

Related Questions