I\'ve looked around the site and can\'t seem to find an answer for this question. Feel free to direct me to said question, if it does indeed exist.
I\'m currently trying
Instead of this:
$(':checkbox').removeAttr('checked');
You should do this:
$(':checkbox').attr('checked', false);
Cheers