Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open Page in a Frame/Destroy Frames

Frames

Open Page in a Frame/Destroy Frames

by  4x4uk  Posted    (Edited  )
To stop other people opening your page in a frameset put the following in the between the head tags of your page

<script language="JavaScript" type="text/javascript">
<!-- Hide script from older browsers
if(parent.frames[1])
parent.location.href=self.location.href;
// end hiding contents -->
</script>

Spent ages desiging your site using frames then you need the code below to ensure your frameset is always used to display your pages

<script language="JavaScript" type="text/javascript">
<!--
if (top==self)
self.location.href="yourframesetpage.html";
-->
</script>
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top