pablomarambio / jquery.rut

Formato y validación de RUT Chileno / jQuery 1.4+
MIT License
102 stars 56 forks source link

Problema en la sintaxis del README #11

Closed diegovc2 closed 6 years ago

diegovc2 commented 7 years ago

en el TL;DR el código esta así


<script>
$(function() {
    $("#rut").rut().on('rutValido', function(e, rut, dv) {
        alert("El rut " + rut + "-" + dv + " es correcto");
    }, { minimumLength: 7} );
}
</script>

pero le falta un parentesis, debería quedar así:

$(function() {
        $("#rut").rut().on('rutValido', function(e, rut, dv) {
          alert("El rut " + rut + "-" + dv + " es correcto");
        }, { minimumLength: 7} );
    });
pablomarambio commented 7 years ago

Hola, puedes enviarme un pull request con el cambio plis?

El 27/9/2017 3:18 PM, "diegovc2" notifications@github.com escribió:

en el TL;DR el código esta así

pero le falta un parentesis, debería quedar así:

$(function() { $("#rut").rut().on('rutValido', function(e, rut, dv) { alert("El rut " + rut + "-" + dv + " es correcto"); }, { minimumLength: 7} ); });

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/pablomarambio/jquery.rut/issues/11, or mute the thread https://github.com/notifications/unsubscribe-auth/AAst2tAl36f1UtQAVNlj-LqTj4gvZnF9ks5smkspgaJpZM4PlwHx .

pablomarambio commented 6 years ago

Corregido en https://github.com/pablomarambio/jquery.rut/pull/12