Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the validate plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/

What i'm trying to find is a way to make some of my form fields accept letters only, no numbers, special chars etc...

Any idea people ? Thanks a lot.

share|improve this question

3 Answers

up vote 19 down vote accepted

Simply add a custom validator, and use it like this:

jQuery.validator.addMethod("accept", function(value, element, param) {
  return value.match(new RegExp("." + param + "$"));
});

Only numbers:

rules: {
  field: { accept: "[0-9]+" }
}

Only letters

rules: {
  field: { accept: "[a-zA-Z]+" }
}
share|improve this answer
accept is a native method to validate file extension. docs.jquery.com/Plugins/Validation/Methods/accept#extension – Boris Guéry Mar 19 '10 at 10:26
I über validate your answer, thanks for the quick and clean tip !! – pixelboy Mar 19 '10 at 10:28
Glad it helped you :-) – Marcos Placona Mar 19 '10 at 10:28
1  
Shouldn't the . be a ^? – Mark Byers Sep 11 '10 at 3:08

A small change.

jQuery.validator.addMethod("accept", function(value, element, param) {
    return value.match(new RegExp("^" + param + "$"));
});

Because that way it was accepting expressions like "#abc".

share|improve this answer
correct, thank you! – dome Jun 7 '12 at 16:17

Try like this:

        var numbers = /[0-9]+/;
        var SpCharacters = /^\s*[a-zA-Z0-9\s]+\s*$/;

        if (!numbers.test(name) && !SpCharacters.test(name)) {
            return [false, "Name should be alphabetical.", ""];
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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