How to enter content in the first input. Textarea automatically gets the value of the first file box;
In other words, the value of the first input while entering textarea
Thank you
<script> <BR> function send(obj) <BR> { <BR> document.all.content.value=obj.value <BR> } <BR> </script> <script> <BR> function refreshValue(obj) { <BR> var s = obj.value; <BR> document.all("t1").value = s; <BR> } <BR> </script>