Skip to content

Instantly share code, notes, and snippets.

@Erichx
Erichx / index.html
Last active August 29, 2015 14:02
Mascaras de jQuery Mask Plugin do autor Igor Escobar, que é de grande ajuda no front.
<!doctype html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title>Mascaras Para Campos</title>
<style >
.campos {
display: block;
margin: left;
jQuery.validator.addMethod("cnpj", function (cnpj, element) {
cnpj = jQuery.trim(cnpj);
// DEIXA APENAS OS NÚMEROS
cnpj = cnpj.replace('/', '');
cnpj = cnpj.replace('.', '');
cnpj = cnpj.replace('.', '');
cnpj = cnpj.replace('-', '');
var numeros, digitos, soma, i, resultado, pos, tamanho, digitos_iguais;