have an application which needs to be run on IE7.
I want to hide address bar & status bar for all users. For IE6, it 's working fine. In my script I have below code which hide all bars.
window.open("login.jsp", "eTIMS", "toolbar=0,location=0, directories=0, status=0, menubar=0,scrollbars=1,resizable=0,width=1014,height=714,left=0,top=0");
But for IE7, it's not working. It displaying URL and status bar.
I want for all users. So, I don't want to change security settings for IE7.("To allow browser without status bar and address bar"). We can't tell all user to do this.
How can I hide address bar and status bar using script in IE7?
I want to hide address bar & status bar for all users. For IE6, it 's working fine. In my script I have below code which hide all bars.
window.open("login.jsp", "eTIMS", "toolbar=0,location=0, directories=0, status=0, menubar=0,scrollbars=1,resizable=0,width=1014,height=714,left=0,top=0");
But for IE7, it's not working. It displaying URL and status bar.
I want for all users. So, I don't want to change security settings for IE7.("To allow browser without status bar and address bar"). We can't tell all user to do this.
How can I hide address bar and status bar using script in IE7?