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;
}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.