How to breakout from an iframe? -
i have site works within iframe, want breakout iframe, , redirect site, whole new site own url should open, not maintaining current url or iframe.
i have tried
<meta http-equiv="refresh" content="0"; url="http://www.newsite.com/newurl.html"> , header ('location:http://www.newsite.com/');
they didnt work out me.
try this:
<script type="text/javascript"> if (top.location!= self.location) { top.location = 'http://www.newsite.com/'; } </script>
if runs within iframe redirect parent window http://www.newsite.com/
.
Comments
Post a Comment