Last active
April 20, 2017 13:40
-
-
Save ricardoriogo/4711723 to your computer and use it in GitHub Desktop.
CNPJ validation for jQuery Validate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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álido."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
O script ta apontando o CNPJ 05.814.777/0001-03 com inválido