Web Hosting Talk







View Full Version : I need a script that.......


beanballcomin
06-01-2001, 02:26 PM
......will not let the person browsing go directly to a frames page enclosed in a web site.

Where is such a script, or how can I prevent this?

Sesran
06-01-2001, 02:45 PM
<script language=javascript type="text/javascript">
<!-- Hide script from old browsers

if (top.location == self.location) {
top.location.href = "index1.htm"
}
// End hiding script from old browsers -->
</script>

Change the "index1.htm" to whatever page has your main frame on it.

beanballcomin
06-01-2001, 04:48 PM
Thank you.