jqueryformscheckboxreset

Jquery form reset function doesn't reset checkboxes


I have a form that contains checkboxes, and from the script I check and uncheck them according to some requirements. at a certain point I reset the form $("#formId")[0].reset(), all inputs get reseted exept for checkboxes!!

I reseted the form but checkboxes didn't get reseted.


Solution

  • It turns out cuz I was using attr('checked', true) I switched to prop('checked', true) and it worked.