Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/05/2017, 18:32
Avatar de aviweb2015
aviweb2015
 
Fecha de Ingreso: abril-2016
Ubicación: venezuela
Mensajes: 215
Antigüedad: 8 años, 1 mes
Puntos: 1
Respuesta: problemas con keypress

problema solucionado: añadir las etiquetas
Código Javascript:
Ver original
  1. $('#bt_add').keypress(function(event){
  2.                  var keycode = (event.keyCode ? event.keyCode : event.which);
  3.                  if(keycode == '13'){
  4.                 agregar();
  5.                 }
  6.              });
  7.  
  8.               $( "#idFormulario" ).submit(function( event ) {
  9.                event.preventDefault();
  10.                });


y el formulario: <form id="idFormulario" action="" method="POST">
__________________
yoclens avilan