IE9 checkbox state change form submit back button does not show correct state
问题 I have a form with a few checkboxes. Each time I check/uncheck one box form is submitted. Relevant code: $("input[name='checkboxgroup']").bind("click",function(e) { e.preventDefault(); ... ... form.submit(); }); However when I click back button on IE9 it shows all my checkboxes still checked( Expected: checkbox last checked before Back button should've been unchecked) The backend sends data to check/uncheck checkbox whenever page reloads. I have verified that last checkbox clicked before Back