Ok, So this isn't exactly a PHP thing but I figured maybe someone here could help me. I have a site (PHP/MySQL) and it has some strange requirements.
There is a flash application that loads a url into an Iframe content window. This content window in turn loads relavent content into another iframe (right hand bar) on the page when it is loaded.
The issue: In firefox, opera, netscape, etc... this is all flawless.
In internet explorer the browser refuses to load or recognize any more links clicked in the flash application until the right-hand bar is fully loaded.
For what it is worth, below is the PHP code of the main window when a link is clicked on in the flash piece it sends a URL and some other arguements to the main window to be loaded. There 2 window.open
the first one loads the right bar, the second reloads the content frame with the actual content for that page. Again the problem is IE won't go to another link until the right frame is fully loaded, rather than, like all other browsers, simply loading the links as they are clicked on (just like any other link would work)
I would send you the link but I can't for legal reasons so I hope this explains the problem
<html><head>
<script Language="JavaScript">
<!--
<?="X=";?>window.open('<?="right_scroll.php?c=$c&b=$b";?>','rightb');
//-->
</script>
</head>
<body>
Loading...
<script Language="JavaScript">
<!--
<?="Z=";?>window.open('<?=$url;?>','main');
//-->
</script>
</body>
</html>