> The problem is that this CB function finds only checked checkboxes.

That's how forms are supposed to be submitted.  If you don't want this
behavior then you'll have to serialize the form yourself using
fieldSerialize.  For example:

$('#myForm').submit(function() {
    var data = $(':input',this).fieldSerialize(false);
    $.post(this.action, data);
    return false;
});

Reply via email to