HI! I want to simulate resizing the parent page page by using this function.
<script language="JavaScript">
function firefoxautofix(x,y,){
parent.window.resizeBy(-1,-1)
parent.window.resizeBy(+1,+1)
}
</script>
Should this function be in the head or the body?
I want to get around a small bug in firefox that does not seem to resize (
after a iframe resize script is executed) the body unless the user refreshes
the page or resizes the browser manually from left to right. So I figure
that I would try to simulate a manual resize with this script.
Would I just call it like so.
<body onload="firefoxautofix();">
--
Thanks in advance
Paul
"Paul" <(E-Mail Removed)> wrote in message
news:de2Ye.7721$(E-Mail Removed)...
> HI! I need to call a function that is located in the parent. I need it so
> that it calls when the child page in the iframe loads.
>
> Would it be better to use an onload event in the body? if so how do I call
> it from the child page?
>
> --
> Thanks in advance 
>
> Paul
>