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
|