English
<!--The complete HTML code is as follows:--> <HTML><HEAD> <SCRIPT LANGUAGE="JavaScript"><!-- hide from old browsers function enfocus() { document.forms[0].Data.focus () document.forms[0].Copy.value = document.forms[0].Data.value setTimeout("enblur()", 500) } function enblur() { document.forms[0].Data.blur( ) setTimeout("enfocus()", 5) } <!-- done hiding --></SCRIPT></title></HEAD> <BODY bgcolor="ffffff" link="0000ff" vlink="770077" onLoad="setTimeout('enblur()', 500)"> When you type in the upper text box, the lower text box will automatically <i>display</i> the content you typed. <p> <CENTER><FORM> Type here: <INPUT TYPE="TEXT" SIZE=40 NAME="Data"><br> Response shows: <INPUT TYPE="TEXT" SIZE=40 NAME="Copy" ><br> <INPUT TYPE="BUTTON" VALUE="Clear" onClick="document.forms[0].Data.value=''"> </FORM></CENTER> </body> </html>