Here is the simple way to check and uncheck checkbox button using jQuery. 1. The example below show that.. on change dropdown option of field.. all the check-boxes will be unchecked . jQuery('#nst').change(function(){ jQuery('input:checkbox').each(function() { this.checked = false; }); });...