Michael Geib: top.location.href will nicht im Netscape

Beitrag lesen

Hallo,

weis nicht ob das dir hilft musst es noch anpassen ich benutze dies auch wg. den frames

<script language="JavaScript">
<!--
function showframe(file)
{
var url = file;
var browser = navigator.appName;
var version = navigator.appVersion.charAt(0);

if(browser=="Netscape" && version >=4)
{
parent.frames[1].location.href = url;
}

if(browser=="Microsoft Internet Explorer" && version >=4)
{
parent.frames[1].location.href = url;
}
}
// -->
</script>

tschau

Michael