Is it possible to put target="_blank" in a dropdown list? I have tried, but it doesn't seem to be working.
You'll most likely have to use a JavaScript. If you post your current dropdown menu copy, I'll try to help you out.
Here is the code: <form name="htmlMenu"> <select name="htmlSelList" size="1"> <option value="">Please select...</option> <option value="http://www.google.com">Google</option> </select> <input type="button" onClick="document.location =document.htmlMenu.htmlSelList.options [document.htmlMenu.htmlSelList.selectedIndex].value;"value="GO"> </form> PHP: thanks