Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/09/2012, 14:50
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: Como llamar evento desde otro evento?

Probá así:
Código PHP:
<input type="text" onclick="this.onkeypress();" onkeypress="alert('Lo Lograste!');"
o así:
Código PHP:
<input type="text" onclick="this.onkeypress.call(this);" onkeypress="alert('Lo Lograste!');"