Click to See Complete Forum and Search --> : submit form from a Selection List
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.
Thanks.
IncaWarrior
04-24-2004, 05:49 PM
you could use that auto drop down list thing
Can you elaborate? Also, is it possible to attach URLs to selection list values?
Thanks.
<select onchange="submit();">
Nedals
04-25-2004, 01:43 PM
Try this..
<form>
<select onchange="action=this[selectedIndex].value; submit()">
<option value="url1">1
<option value="url2">2
</select>
</form>