For example:
<select>
<option value=''>Select...</option>
<option value='http://www.google.com'>Google</option>
<option value='http://www.yahoo.com'>Yahoo</option>
</select>
I want to redirect the selected site in a new window, such as link's attributes:
target='_blank'
I have found:
<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
But it can only redirect to the site on current page.