Simple redirect dropdown list
浪花 | SpoonDrift
If you want a simple dropdown list redirecting users when they select an option, you can use a javascript code like this:
- <select onChange='location=this.options[this.selectedIndex].value'>
- <option selected>pick one</option>
- <option value='http://www.google.com'>google</option>
- <option value='http://www.yahoo.com>yahoo</option>
- </select>
No comments:
Post a Comment