How to change features of an existing window in IE?

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
User avatar
Heavy
Forum Contributor
Posts: 478
Joined: Sun Sep 22, 2002 7:36 am
Location: Viksjöfors, Hälsingland, Sweden
Contact:

How to change features of an existing window in IE?

Post 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.
Post Reply