Another method that I use to do the very same thing (1.2.6)

        $('tbody tr').click( function(event) {
                if ($(event.target).is('input')) {
                        return;
                }

                var $input = $(this).find('input');

                if ($input.length) {
                        $input.attr('checked', ! $input.attr('checked'));
                }
        });

Reply via email to