I\'m creating a popup window with no URL source using window.open(). I don\'t give it a URL because soon I\'ll want to post a form to it. However, in the meantime I\'d lik
Test
Works in IE 6, 7 & 8, Opera 9.6, Firefox 2 & 3. Does not work in Safari for Windows 3 & 4 or Google Chrome.
When it does work, it results in a pretty ugly URL in the Location box.
If the browser support listed above is acceptable, you can use the solution provided, otherwise I'd do what David said and window.open('Loading.htm' ...)
where Loading.htm
contains whatever content you want to display (you should probably keep it lightweight otherwise it might take longer to load and render than the form will to POST).