Page is a not externally linkable
- Code, Content, and Presentation
-- HTML
---- Mystery of missing browser navigation functions


mbabuskov - 5:36 am on Apr 11, 2011 (gmt 0)


Is it possible that 'config' is a variable and you really meant to write:

window.open(options[selectedIndex].value,'_blank',config);

The 3rd parameter to window.open controls whether you have navigation, menu, statusbar, etc. If you want the default one, then omit the parameter completely:

window.open(options[selectedIndex].value,'_blank',config);

Otherwise, you can specify what you want:

window.open(options[selectedIndex].value,'_blank','toolbar=1,location=1');

HTH

--
Milan B.

[edited by: tedster at 6:59 am (utc) on Apr 11, 2011]


Thread source:: http://www.webmasterworld.com/html/4295128.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com