-2

Can somebody help me to validate these phone number patterns? Please see the image below to help me solve my problems.. I couldnt figure any way to do it as i am new to validation. Any help is appreciated.. Thanks

I am sorry i couldnt post the image. the format is +97798********

1 Answers1

0

You can use Cleave JS which helps you to validate and format the phone numbers in a more meaningful way, you can do it like this:

See Demo Here

var cleave = new Cleave('.input-element', {
    phone: true,
    phoneRegionCode: 'IN'
});

Hope this helps!

Saumya Rastogi
  • 13,159
  • 5
  • 42
  • 45