Código:
<html>
<head>
</head>
<body>
<form name="frm">
<input type="text" name="t1" onclick="javascript:document.frm.t2.value = document.frm.t1.value">
<input type="text" name="t2">
</form>
</body>
</html>
una pregunta este
onclick="javascript:document.frm.t2.value = document.frm.t1.value" como puedo hacer para que me agregue al t2 lo que esta en t1 , y al cambiar en t1 y volver a dar doble click solo agregue lo nuevo a t2 sin borrar el contenido existente?