Skip to content

Instantly share code, notes, and snippets.

@vivekn
Created August 15, 2011 17:44
Show Gist options
  • Save vivekn/1147296 to your computer and use it in GitHub Desktop.
Save vivekn/1147296 to your computer and use it in GitHub Desktop.
value validator
function foo(value) {
return value==42;
}
...
Validators({
"#field_item": new ValueValidator("errorClass",
"This field is not the answer to life, the universe and everything", foo)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment