jQuery(function($) { 'use strict'; $('#select_all_categories').on('click', function() { if ($(this).is(':checked')) { $('.chkbx').each(function() { this.checked = true; }); } else { $('.chkbx').each(function() { this.checked = false; }); } }); });