Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $.verify.addRules({
  2. validName: function(r) {
  3. if (/^[a-zA-Z ]+$/.test(r)) {
  4. return true;
  5. } else {
  6. return 'Name is incorrect';
  7. }
  8. },
  9. validBirthday: function(r) {
  10. if (/^([0|1|2][0-9]|3[01])\/(0[0-9]|1[012])\/[0-9]{4}$/.test(r)) {
  11. return true;
  12. } else {
  13. return 'Date is incorrect';
  14. }
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement