This could be a totally daft question, but here I go:
If I execute the below JS upon entering a page in NS6, I *almost* get a "stripped" window.
self.resizeTo(800,600);
self.menubar.visible=false;
self.toolbar.visible=false;
self.locationbar.visible=false;
self.personalbar.visible=false;
self.scrollbars.visible=false;
self.statusbar.visible=false;
All that remains is that nasty NS6 sidebar to the left... Is there a way of getting rid of it? I was hoping that a simple 'self.sidebar.visible = false;' would work, but no...
I've searched for info on the methods and attributes of the sidebar object, but all I've found is the addPanel method... which is of little help!
Thanks for any input on this.
If I execute the below JS upon entering a page in NS6, I *almost* get a "stripped" window.
self.resizeTo(800,600);
self.menubar.visible=false;
self.toolbar.visible=false;
self.locationbar.visible=false;
self.personalbar.visible=false;
self.scrollbars.visible=false;
self.statusbar.visible=false;
All that remains is that nasty NS6 sidebar to the left... Is there a way of getting rid of it? I was hoping that a simple 'self.sidebar.visible = false;' would work, but no...
I've searched for info on the methods and attributes of the sidebar object, but all I've found is the addPanel method... which is of little help!
Thanks for any input on this.
Comment