gimecoffee
MIS
- Mar 3, 2006
- 25
thread216-1125568 was not answered and I'm curious. I'm writing a web based application and I'd like to query window properties for possible action. For instance:
I want my application to check if the toolbar is visible and if it is then I want to open a new window with the toolbar hidden. This script works great in Firefox but gives an error in IE. Does IE have a similar window property I can query.
Tusan Tuk
Rois
Code:
if(window.toolbar.visible == true) {
window.open('/startup.html','','width=700, height=500, left=0, top=0, screenX=0, screenY=0, location=0, menubar=0');
}
Tusan Tuk
Rois