Posts Tagged ‘iframe’
Redirecting out of an iFrame
Want a neat little trick to redirect a page out of an iFrame when your session in the frame has finished?
Drop this into the header of your final page:
<script type=”text/javascript” language=”javascript”>
if (top.frames.length>0)
setTimeout(“top.location = window.location;”,100);
</script>




