hiding toolbar's

  • Thread starter Thread starter mr.ED
  • Start date Start date
M

mr.ED

I need hide with javascript the toolbar, location bar and menu bar
the question is, how?????

i use object window, but i can't hide menubar

please help me
 
You may use the following script:

var url = http://www.microsoft.com;
var feature = "height = 700 ,width= 1000
,resizable=no,scrollbars=no,titlebar=no,status=no,toolbar =no,location=no ";
window.open(url, null, feature);
 
Kenrick Fu escribió:
You may use the following script:

var url = http://www.microsoft.com;
var feature = "height = 700 ,width= 1000
,resizable=no,scrollbars=no,titlebar=no,status=no,toolbar =no,location=no ";
window.open(url, null, feature);
thanks, this is for new windows i need change the actual window
 
Back
Top