P: ¿Como puedo redireccionar lo escrito en un elemento HTML hacia otro elemento?
R: [ver ejemplo] Código PHP:
<html>
<head>
<script language="JavaScript">
function redirecciona(){
if (oTrap.checked){
oOutput.innerText += "[trap = " + event.keyCode + "]";
event.returnValue = false;
} else oOutput.innerText += String.fromCharCode(event.keyCode);
}
</script>
</head>
<body>
<table border="0">
<tr>
<td>
Texto:<input id="oExample" type="text" onkeydown="redirecciona()">
</td>
<td>
<input type="checkbox" id="oTrap"> Modo debug
</td>
</tr>
<tr>
<td colspan="2">
<textarea id="oOutput" rows="10" cols="50"></textarea>
</td>
</tr>
</table>
</body>
</html>