visantillan / ServicioSocial

0 stars 0 forks source link

Formuarios con Codigos Postales #15

Closed bustedvillain closed 11 years ago

bustedvillain commented 11 years ago

Al dar enter en el campo de codigo postal, hace un submit en el formulario

bustedvillain commented 11 years ago

Se corrigió agregando el siguiente codigo en el jquery: $('form').keypress(function(e) { if (e === 13) { return false; } });

```$('input').keypress(function(e) {
    if (e.which === 13) {
        return false;
    }
});```