Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/05/2007, 12:54
Avatar de netzky
netzky
 
Fecha de Ingreso: mayo-2007
Mensajes: 56
Antigüedad: 17 años, 8 meses
Puntos: 1
Re: problema con onKeyDown/onKeyPress

Intenta con esto:

Código HTML:
<script>
		function mover(e){
			  var tecla = e.keyCode;  
				if(tecla==39){
				ss.next();
			   e.preventDefault();				
				}
				if(tecla==37){
				ss.prev();
			   e.preventDefault();	
				}
		
		}
	</script>

<body onkeydown="javascript:mover(e)">