joeltonnberg
08-23-2007, 10:47 AM
I use following function (with dhtml windows):
<script language="javascript" type="text/javascript">
function loadPage()
{
parent.Window1.load("iframe", "myPage.php", "page")
}
</script>
and then call the function in the body tag as such:
<body onload="loadPage()">
However, it works just fine in Firefox, but in Internet Explorer it does only work if I use it with an button (onClick) and not with onload.....
<script language="javascript" type="text/javascript">
function loadPage()
{
parent.Window1.load("iframe", "myPage.php", "page")
}
</script>
and then call the function in the body tag as such:
<body onload="loadPage()">
However, it works just fine in Firefox, but in Internet Explorer it does only work if I use it with an button (onClick) and not with onload.....