Hello,
I'm trying to figure out how to open sites from a dropdown menu in a new browser window ("_blank").
Here's my code:
<select name="some-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;"> <option value="">Topic</option>
<option value="http://www.someurl.com"> Someurl.com </option>
This code opens the someurl.com address in the same window. But how to open it in a new window?
Any idea?
Thanks a lot!