I have form with a checkbox that I need submitted if it's clicked on without having to hit a submit button.
I have used it on a drop down, but it doesn't seem to work on the checkbox
- Code: Select all
<form id="tax" name="tax" method="post" action="">
Sales tax charged? <input name="salesTax" type="checkbox" value="Y" checked="checked" onChange="document.forms[0].submit()">
</form>
What do I need to do to make it work?




