Jump to content

Phone formatting


p.kennedy

Recommended Posts

Posted

p.kennedy

These are two separate issues:

1)

Is there a way to prevent someone from entering anything but numbers in a phone field?

and

2)

...looking for some code or something that will keep a phone number formatted a certain way.

 

1) No.

2) See the XML rule "Change phone format rule"

Posted

You could use this regular expression that doesn't return anything except digits:

 

var str = "12three456 seven eight9";

return str.replace(/\D/g,'');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...