Forum Moderators: open
a) May pose any problems to spiders?
b) Is compatible in all browsers?
Thank you
<form name="FormName">
<select style="font-size:12px;color:#008888;font-family:arial;background-color:#ffffff;width=160px;" select name="menu" onChange="location=document.FormName.menu.options[document.FormName.menu.selectedIndex].value;" value="GO">
<option value="myurl.com">Option Name</option>
</select>
</form>
But I don't recommend this. First, I'm not really in favor of using a select list of any kind to change pages/location. From a coding standpoint its kind of fun to make stuff happen automagically, but it rubs me the wrong way from a User Interface aspect. I'm a stodgy page designer at heart, I guess, but I prefer more conventional menus, buttons, and text links - something that requires an intentional mouseclick anyway. Second, I think its always good practice to avoid making navigation entirely dependent on JavaScript. If you go ahead with the <select> list navigation, I hope you'll also put some effort into including some plain text links. Good luck!
I guess from what you have said that there may be an advantage to the SE's not finding the links and that would be that it does not mathematically add to the number of links on the page for the SE's but only for the end user.