Is there a way to spawn a new window via javascript in IE7 that hides the statusbar?
I’ve added the intranet app as a trusted site. Not sure what else I can use to try. This is my JS
window.open('http:/localhost/start.html', 'MyApp', 'left=0, top=0, width=' + screen.width + ',' + 'height=' + screen.height + ', scrollbars=yes, ' + 'resizable=yes, location=no, menubar=no, titlebar=no, ' + 'toolbar=no, status=no');
No. Microsoft decided that ‘in the name of security’ (IE Blog Link) they would force the status bar to show on popup windows in IE7. (they also force a new minimum width of ~250px instead of the 100px it used to be – this is so they can show the url in the readonly dropdown location bar thing)
Sorry.