okays What I want to achieve is that when you type in one textbox it appears in the other textbox live without having to send the page using post or get.
<form id="form1" name="form1" method="post" action="">
<label>
<input name="input" type="text" id="input" />
</label>
<p> </p>
<p>
<label>
<input name="output" type="text" id="output" />
</label>
</p>
</form>
how do i make it so that if you type in input, it automatically displays in output?