Skip to content

Instantly share code, notes, and snippets.

@ricardoriogo
Last active April 20, 2017 13:40
Show Gist options
  • Save ricardoriogo/4711723 to your computer and use it in GitHub Desktop.
Save ricardoriogo/4711723 to your computer and use it in GitHub Desktop.
CNPJ validation for jQuery Validate
jQuery.validator.addMethod("cnpj", function(cnpj, element) {
var numeros, digitos, soma, resultado, pos, tamanho,
digitos_iguais = true;
if (cnpj.length < 14 && cnpj.length > 15)
return false;
for (var i = 0; i < cnpj.length - 1; i++)
if (cnpj.charAt(i) != cnpj.charAt(i + 1)) {
digitos_iguais = false;
break;
}
if (!digitos_iguais) {
tamanho = cnpj.length - 2
numeros = cnpj.substring(0,tamanho);
digitos = cnpj.substring(tamanho);
soma = 0;
pos = tamanho - 7;
for (i = tamanho; i >= 1; i--) {
soma += numeros.charAt(tamanho - i) * pos--;
if (pos < 2)
pos = 9;
}
resultado = soma % 11 < 2 ? 0 : 11 - soma % 11;
if (resultado != digitos.charAt(0))
return false;
tamanho = tamanho + 1;
numeros = cnpj.substring(0,tamanho);
soma = 0;
pos = tamanho - 7;
for (i = tamanho; i >= 1; i--) {
soma += numeros.charAt(tamanho - i) * pos--;
if (pos < 2)
pos = 9;
}
resultado = soma % 11 < 2 ? 0 : 11 - soma % 11;
if (resultado != digitos.charAt(1))
return false;
return true;
}
return false;
}, "Informe um CNPJ v&aacute;lido.");
@krismorte
Copy link

O script ta apontando o CNPJ 05.814.777/0001-03 com inválido

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment