tags:

views:

5

answers:

0

Hi,

i am using jquery validation and i have the following rule

rules: {
    field: { required: false,remote: "file.php"}
},

The file.php check if the field value exist in db.

I need to allow blank values too.

But its not working. If i use required: true the blank values are not allow.

Any suggestions.