Page 1 of 1

How to change features of an existing window in IE?

Posted: Mon Jun 23, 2003 9:14 am
by Heavy
I did this in Mozilla:

Code: Select all

//This is javascript:
			function noToolbars(){
				self.menubar.visible=false;
				self.toolbar.visible=false;
				self.locationbar.visible=false;
				self.personalbar.visible=false;
				self.scrollbars.visible=false;
				self.statusbar.visible=false;
			}
Anyone knows how to do similarily with IE 5,6 ?
I searched the msdn for info, but I always get lost in that forest.

I am not doing window.open() and using windowfeatures from there. I want to set these features in the same window the script is running in.