A
adzgarbage
The problem this fixes is where you put some content in an iframe and
the content finishes loading in the iframe but the ie status bar keeps
loading.
I had this problem for quite a while, here is what I did to fix it. I
had one main page that had 2 Iframes that contained the content i
wished to display. With just these 2 iframes on the page I would
itermitantly get the status bar problem. To fix this I created a third
ifram of just size 1 called garbageframe. Then on what ever page I was
going to display in one of the 2 content frames I added :
<body onload="javascript:fixprogressbar()">
where fixprogressbar was a javascript function
function fixprogressbar()
{
top.garbageframe.document.write("");
top.garbageframe.close();
return
}
No more problems
the content finishes loading in the iframe but the ie status bar keeps
loading.
I had this problem for quite a while, here is what I did to fix it. I
had one main page that had 2 Iframes that contained the content i
wished to display. With just these 2 iframes on the page I would
itermitantly get the status bar problem. To fix this I created a third
ifram of just size 1 called garbageframe. Then on what ever page I was
going to display in one of the 2 content frames I added :
<body onload="javascript:fixprogressbar()">
where fixprogressbar was a javascript function
function fixprogressbar()
{
top.garbageframe.document.write("");
top.garbageframe.close();
return
}
No more problems