I was wondering how to make it so that I could make a rule where a field is not equal to a value. Like I have a field called 'name' so I don't want 'name' = 'Your Name.'

Does anybody have an idea of how to do this? thanks for any help.

link|improve this question

feedback

5 Answers

up vote 25 down vote accepted

You could use a custom method, something like this:

jQuery.validator.addMethod("notEqual", function(value, element, param) {
  return this.optional(element) || value != param;
}, "Please specify a different (non-default) value");

Then use it like this:

$("form").validate({
  rules: {
    nameField: { notEqual: "Your Name" }
  }
});

Adding it as a rule like this makes it more extensible, so you can use it to compare against the default value in other fields.

link|improve this answer
feedback

Nick's answer fits the bill. I needed to compare two fields on the form and make sure they were not equal. I modified it just a bit.

jQuery.validator.addMethod("notEqual", function(value, element, param) {
 return this.optional(element) || value != $(param).val();
}, "This has to be different...");

$("#cform").validate(
{
    rules: {
        referringsales: { required: false, notEqual: "#salesperson" }
    }
});

Edited to answer comment:

If you have more than one set of dropdowns to compare, the method also works with that case.

jQuery.validator.addMethod("notEqual", function(value, element, param) {
 return this.optional(element) || value != $(param).val();
}, "This has to be different...");

$("#cform").validate(
{
    rules: {
        referringsales: { required: false, notEqual: "#salesperson" }
        DropDown2: { required: false, notEqual: "#SecondBase" }
    }
});

If the question is regarding comparing referringsales against 2 different bases (say #initialContact and #salesperson), then simply add that rule to the list.

referringsales: { required: false, notEqual: "#salesperson", notEqual: "#initialContact" }
link|improve this answer
Sam's comment: "@Frank Luke : what if I have 2 different dropdowns?" – Peter O. Mar 2 at 7:42
@PeterO., the second drop down would have its own rule. Like this: secondDropDown: { required: false, notEqual: "#secondBase" } The second base can be the first one or a different one. The notEqual method checks the one referred to. Or do you mean you have to compare one value to 2 different drop downs? – Frank Luke Mar 2 at 14:49
That's not my comment. I merely added it here because its author wrote it as an answer rather than a comment. For that reason you should modify this answer to respond to the comment. – Peter O. Mar 2 at 14:52
feedback
   // this one requires the value to be not the same as the first parameter
$.validator.methods.NotEqual = function(value, element, param) {
   return value != param;
};

$('form').validate({
    rules: {
        name: {
           NotEqual : 'Your Name' 
        }
    }
});

you can view something similar here.

link|improve this answer
feedback

Not sure if you got your answer but:

return this.optional(element) || value != param;

won't work if the value is variable.

It needs to read:

return this.optional(element) || value != $(param).val();

Cheers

link|improve this answer
feedback

If you have just one value where you want it to not be like your question implies, you can check against that pretty easily without any external plugins.

$('#yourForm').submit(function(e) {
    if ( $('input[name="yourField"]').val()=='Your Name' )
        e.preventDefault();
        alert("Your message here");
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.