guitardave78
Programmer
Ok so I open a new window using window.open
Then I add content
In firefox i get the alert box that says hello.
In IE i dont
Any ideas?
}...the bane of my life!
Then I add content
Code:
newWin = window.open('about:blank','Uploading','width=200,height=100,status=no');
newWin.document.write("<html><head><title>Uploading</title><style>body{font-family:verdana;font-size:90%;background-color:#F0F1F5;}</style>")
newWin.document.write("<body><script src='includes\js.js'></script><script>alert('hello')</script><div id='uploading' style='display:block'><img src='images/loading.gif' alt='Loading' /> Uploading...<br>Please Wait.</div></body></html>")
In firefox i get the alert box that says hello.
In IE i dont
Any ideas?
}...the bane of my life!