Quote:
Originally Posted by UKBusinessLive
Hi,
This is how it looks without the target blank
Code:
<option value="http://www.ukbusinesslive.co.uk">UKBusinesslive Store</option>
and this is where you add the target blank, to get the link to open into a new page, highligted in blue
Code:
<option value="http://www.ukbusinesslive.co.uk" target="_blank" >UKBusinesslive Store</option>
you need to make sure that its the same layout as above and that you have all the " in the right place. Theres no real reason for it not to work as its basic HTML
Let me know how you got on, or perhaps post your code here and we'll take a look

|
Unless I'm blind, that's how I have a couple of the links formatted. Here's the initial snippet of code showing one of the links setup as you've instructed (but it doesn't perform any differently than the other links when clicked by opening a new window):
Code:
<div id="drop_box_nav"><form action="#" onsubmit="return go_nav();"><select name="my_links" id="my_links" align="center">
<option value="http://www.dabearz.com/forums/" target="_blank" >Bears/DaBears</option>
<option value="http://www.chicagobears.com/">Bears/Team Site</option>
<option value="http://forums.bengalszone.com/">Bengals/BengalsZone</option>
Appreciate the help!