Combo box when click it will open to a new tab

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>

thanks :D
 
target blank just for <a> ... lol...

if you wan to do with div then gooling for js popup :)
 
You will need to use javascript for this most likely, but for the <a> tag, you can use that. Also, it's target="_blank" :)
 
Back
Top