$(':checkbox').on('change', function(){ var a = $(':checkbox:checked').length; if (!a) { $('#count').text('Отмеченных: ' + a).fadeOut("slow"); return; } $('#count').text('Отмеченных: ' + a).fadeIn("slow"); });