Is it possible to have links from a drop-down menu open in a new window?
If yes....how do you do it?
If yes....how do you do it?




window.location.href = object.options[object.selectedIndex].value;
window.open(object.options[object.selectedIndex].value);

Comment