Javascrrrrript help needed...
I have a drop down menu that loads the links automatically when an option is selected in the menu.
I'm using this line:
(form)
(select name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value; target=_TOP}" size="1")
(option value="http://link.com")LINK(/option)
(option value="http://link2.com")LINK 2(/option)
(/select)
(/form)
and the link opens in the same window...
now how do I go about opening the link in a new window? setting the target to _NEW or _BLANK doesn't seem to work.
|