Ver Mensaje Individual
  #8 (permalink)  
Antiguo 26/01/2012, 10:52
Avatar de madhatterdef
madhatterdef
 
Fecha de Ingreso: diciembre-2011
Ubicación: argentina
Mensajes: 213
Antigüedad: 12 años, 4 meses
Puntos: 59
Respuesta: Problemas para el boton de envio

por las dudas así haces que abre un popup al presionar enter en el campo
pero eso seguro ya lo sabes lo estoy adaptando para tu cometido (solo por las dudas)

Código:
<html>
<head>
<script type="text/javascript">
function popupenter(e) {
  tecla = (document.all) ? e.keyCode : e.which;
  if (tecla==13) {window.open('2.html','','width=100,height=125');}
}
</script>
</head>
<body>
<input type="text" onkeypress="popupenter(event)" />
</body>
</html>
__________________
PD gracias por el karma