Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/04/2009, 10:29
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 10 meses
Puntos: 2
Respuesta: Ayuda...validaciones con 2 eventos onkeypress

Bien David, realize las modificaciones de la funcion tabular y esto quedo:
Código php:
Ver original
  1. function tabular(e,obj){
  2.     tecla=(document.all) ? e.keyCode : e.which;
  3.     if(tecla!=13) return;
  4.     if(e.preventDefault){
  5.         e.preventDefault();
  6.     }else{
  7.         e.returnValue=false;
  8.     }
  9.     frm=obj.form; ...
Pero sigue en el mismo error???