Posts by brunofarias • 111 points
1 post
-
11
votes14
answers126839
viewsA: Phone Mask Using jQuery Mask Plugin
You can do it like this: var SPMaskBehavior = function (val) { return val.replace(/\D/g, '').length === 11 ? '(00) 00000-0000' : '(00) 0000-00009'; }, spOptions = { onKeyPress: function(val, e,…