Click to See Complete Forum and Search --> : submit form from a Selection List


rak
04-24-2004, 04:59 PM
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

rak
04-25-2004, 11:48 AM
Can you elaborate? Also, is it possible to attach URLs to selection list values?

Thanks.

Fang
04-25-2004, 12:13 PM
<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>