question1:
is that possible to make a form with a single select field
and to submit this on onchange event without submit button?
question2:
form name language
this is my select(pulldown)
Option Name Value Submitted Delete?
english en
deutsch de
espaniola es
and my form looks like this:
Code: Select all
<form id="m2moduleform-1" name="m2moduleform-1" method="post" action="index.php" enctype="multipart/form-data"><div class="hidden"><input type="hidden" name="mact" value="FormBuilder,m2,default,0" /><input type="hidden" name="m2returnid" value="16" /></div>
<input type="hidden" name="m2form_id" value="2" />
<input type="hidden" name="m2continue" value="2" />
<input type="hidden" name="m2done" value="1" />
<div>
<div class="input"><select name="m2_7"><option value="" selected="selected"> Go</option><option value="1">english</option><option value="2">deutsch</option><option value="3">espaniola</option></select>
</div>
</div>
</form>
why my form name is m2moduleform-1 and not language
why teh submitted values are 1,2,3 and not en,de,es
thanks