A fourth solution would be to enable the checkboxes before submitting the form:
$("form").submit(function() { $("input:checkbox", this).prop("disabled", false); });
You can use a more sophisticated selector if you do not want to turn on all the checkboxes again.
FrΓ©dΓ©ric hamidi
source share