How can i open a new tab using a combo box?

rap8557

Banned - Selling via PM
Joined
Sep 15, 2008
Messages
2,000
Reaction score
631
How can i do this?

I tried adding the code target="blank" but still it wont open to a new tab

here's the code im using
Code:
<form name="redirect" id="redirect">
<div align="center" class="style20"><span class="style21">Choose your country</span> 

<select name="selection"> 
<option value="http://website.com/brazil.html">Brazil</option>
<option value="http://website.com/Canada.html">Canada</option>
</select> 

<input name="button" type="button" onclick="WinOpen();" value="ENTER"  target="_blank" /></div>

</form></div>

I need this badly for my LP
thanks
 
Try adding target="_blank" to the <form> tag because target is not supported by the <input> tag.
 
<form name="redirect" id="redirect" target="_blank">
nope it didn't work
this wont work either
<option value="http://website.com/brazil.html" target="_blank">Brazil</option>
 
May I see what you've got in your WinOpen() function?
 
Back
Top