Skip to content

Instantly share code, notes, and snippets.

@stnc
Forked from cagartner/mask.js
Created December 11, 2018 00:04
Show Gist options
  • Save stnc/e7432c70ff6cc6c3f8bfd51b10e31b5e to your computer and use it in GitHub Desktop.
Save stnc/e7432c70ff6cc6c3f8bfd51b10e31b5e to your computer and use it in GitHub Desktop.
Igor Escobar Jquery Input Mask 11 digitos telefones
var maskBehavior = function (val) {
return val.replace(/\D/g, '').length === 11 ? '(00) 00000-0000' : '(00) 0000-00009';
},
options = {onKeyPress: function(val, e, field, options) {
field.mask(maskBehavior.apply({}, arguments), options);
}
};
$('.phone').mask(maskBehavior, options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment