Guest User

Untitled

a guest
Jan 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. regExp = /^((8|+7)[- ]?)?((?d{3})?[- ]?)?[d- ]{7,10}$/;
  2. if( valnospace.length > 0 && !valnospace.match( regExp ) ) {
  3. error.type.push('phone');
  4.  
  5. regExp = /^((8|+7)[- ]?)?((?d{3})?[- ]?)?[d- ]{7,10}$/;
  6. if( valnospace.length > 0 && (!valnospace.match( regExp ) || valnospace.match( /^s+$/ ))) {
  7. error.type.push('phone');
  8. }
Add Comment
Please, Sign In to add comment