View Single Post
  #2 (permalink)  
Old 05-04-08
Donk Donk is offline
Registered User
 
Join Date: Feb 2006
Location: Gillingham
Posts: 503
Thanks: 0
Thanked 0 Times in 0 Posts
Donk is an unknown quantity at this point
  Re: Opening a new window from an option tag

You could use the form tag which does allow the target attribute.
HTML Code:
<form method="post" name="myform" action="newpage.php" target="_blank">
<select name="dropdown" onchange="myform.submit()">
<option>1</option>
<option>2</option>
</select>
</form>
__________________
They came for my 404 and I said nothing
Reply With Quote