|
Posted by G-Man on 09/20/05 17:17
Thanks to all the suggestions. It turned to be the space in the window
name.
To be complete, here is the code that is sent to the browser (minus the
PHP, and after the change to an "_" in the window name):
<HTML>
<HEAD>
<SCRIPT LANGUAGE="Javascript" TYPE="text/javascript">
<!--
function open_window(url) {
var NEW_WIN = null;
NEW_WIN = window.open ("", "Record_Viewer",
"toolbar=no,width=850,height=575,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
NEW_WIN.location.href = url;
}
//-->
</SCRIPT>
I made an example page to test an inline href javascript call like I
listed in the code above, and a full url. Those continued to fail in
IE, but after replacing the space with an underscore, all of the links
worked. I can't belive it's something that simple as a space.
Thanks! This has been racking my brain for about a week!
Navigation:
[Reply to this message]
|