Forum Moderators: open
<form method="post" action="ship.html">
<input type="radio" name="ship" value="8" OnChange="this.form.submit();">First Class Mail
<input type="radio" name="ship" value="7" OnChange="this.form.submit();">Priority Mail
</form>
What are my options with using a radio input to submit for IE?
(One situation where this does work in IE is if after clicking a radio button the user clicks anywhere else on the page - then the form does submit. Even a dummy button marked "submit" would work here.)
Regardless, have you tried other mouse events, like;
<form method="post" action="http://www.google.com">
<input type="radio" name="ship" value="8" onmouseup="this.form.submit();">First Class Mail
<input type="radio" name="ship" value="7" onmouseup="this.form.submit();">Priority Mail
</form>