you could bind a trim function to the entry of the inputs
$('':input').bind('keyup mouseup', function(){
$(this).val( $.trim($(this).val()) ;
});
would have to do some testing to see if this triggers before validation parses the values. Likely need to set keyup option to false
Alternative would be modify plugin code to trim values