javascript thread: Frames Question
This checks the URL of the page and redirects to the
original page if its a new window.
<script language=javascript>
function check()
{
var loc;
loc = window.parent.location;
if (loc != "urlofframesetpage")// if its a new window
{
window.parent.location = "urlofframesetpage";
}
}
</script>
--- andy@a... wrote: > Hi
>
> I've a framed web site (Yeah I know)
>
> Does anyone know how I can recreate the frame set
> when a user goes to an
> individual page.
>
> Thanks
>
> Andy Green
|





