Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created May 16, 2012 14:25
Show Gist options
  • Save wholypantalones/2710740 to your computer and use it in GitHub Desktop.
Save wholypantalones/2710740 to your computer and use it in GitHub Desktop.
jQuery validate notEqual function
//usage
NEW_PASSWORD: {
required: true,
minlength: 7,
notEqual: "#OLD_PASSWORD",
},
//function
jQuery.validator.addMethod("notEqual", function(value, element, param) {
return this.optional(element) || value != $(param).val();
}, "Please specify a different (non-default) value");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment