submit form from a Selection List

windows

Guest
Is it possible to submit a form directly from the selection list without pressing the submit button. Essentially, show a drop-down list, and based on the selection, the selection list value is submitted to the server.<br />
<br />
Thanks.<!--content-->you could use that auto drop down list thing<!--content-->Can you elaborate? Also, is it possible to attach URLs to selection list values?<br />
<br />
Thanks.<!--content--><select onchange="submit();"><!--content-->Try this..<br />
<br />
<form><br />
<select onchange="action=this[selectedIndex].value; submit()"><br />
<option value="url1">1<br />
<option value="url2">2<br />
</select><br />
</form><!--content-->
 
Back
Top