In order to uncheck a checkbox using jQuery use the .prop() function.
jQuery('tag').prop('checked', false);
In order to check a checkbox, set to true.
jQuery('tag').prop('checked', true);
In order to uncheck a checkbox using jQuery use the .prop() function.
jQuery('tag').prop('checked', false);
In order to check a checkbox, set to true.
jQuery('tag').prop('checked', true);