How do I to catch check/uncheck event of with jQuery?
Use the :checked selector to determine the checkbox's state:
$('input[type=checkbox]').click(function() { if($(this).is(':checked')) { ... } else { ... } });