View Full Version : targeting w/ navigational dropdown menu?


AtreidesPhalanx
09-29-2004, 04:59 AM
EDIT!! nvm =) found the answer on lissa's tutorial.

my navigation links are in the form of a dropdown menu, so when I want to make a link, instead of a href, i must you option value. But because i use option value, i can't use target="etc".

ex:

<option value="http://www.xanga.com">Xanga</option>

using this will make the entire page redirect to xanga.

<option value="http://www.xanga.com" target="home">Xanga</option>

using this will still make the entier page redirect to xanga.


So anyone know how I can get the redirect to target my iframe? =(

thx very much.