Click to See Complete Forum and Search --> : submit a form with no button?


netfrugal
11-29-2006, 06:26 PM
I would like to submit a form with only 2 radio buttons: On / Off

Is there a way to submit the form when I click one of the radio buttons, and not a submit button?

eriksmoen
11-29-2006, 06:32 PM
<input type='radio' name='radio1' onclick='this.form.submit();'>

netfrugal
11-29-2006, 07:54 PM
I knew it would be easy! thanks!