Skip to content

Instantly share code, notes, and snippets.

View bruno-gama's full-sized avatar
🐢
I like turtles

Bruno Gama bruno-gama

🐢
I like turtles
View GitHub Profile
@edueo
edueo / validar.js
Created November 6, 2014 14:21
Script para validar CPF/CNPJ
// Validador CNPJ
jQuery.validator.addMethod("cnpj", function(cnpj, element) {
var numeros, digitos, soma, resultado, pos, tamanho,
digitos_iguais = true;
cnpj = cnpj.replace(/[. /-]/g, '');
if (cnpj.length < 14 && cnpj.length > 15)
return false;