Closed bustedvillain closed 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;
}
});```
Al dar enter en el campo de codigo postal, hace un submit en el formulario