Hola
colote
Prueba este ejemplo:
Código javascript
:
Ver original<html>
<head>
<script type="text/javascript">
function pulsar(e) {
if (e.keyCode==34) then {...} // avPag
if (e.keyCode==33) then {...} // rePag
}
</script>
</head>
<body>
<form onkeyup="pulsar(event)">
<input type="text" /><input type="text" />
</form>
</body>
</html>
Saludos,