A nice way to redirect to a page with a select option list

This ought to be in the script tag.

<!--
function nav()
{
var w = document.myform.mylist.selectedIndex;
var URL_add = document.myform.mylist.options[w].value;
window.location.href = URL_add;
}
//-->
And here is the form tag.
<form action="action.cfm" name="myform" id="myform">
Jump to:
<select name="mylist" onChange="nav()">
<option value="thisURL.cfm?ID=36" selected >This
<option value="thisURL.cfm?ID=66">That
<option value="thisURL.cfm?ID=65">Here
<option value="thisURL.cfm?ID=59">There
<option value="thisURL.cfm?ID=45">Nowhere
<option value="thisURL.cfm?ID=58">Other
<option value="thisURL.cfm?ID=55">Random
</select>
</form>

Comments (Comment Moderation is enabled. Your comment will not appear until approved.)
BlogCFC was created by Raymond Camden. This blog is running version 5.9.001. Contact Blog Owner