Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

form content printed in textarea

Status
Not open for further replies.

gabster

Programmer
Oct 23, 2001
192
0
0
US
Hi all,

I am in search of a very simple Java Script that would simply print the content of a form that consist mainly of text fields into a textarea all this happening on the SAME page.

Example:

The user input:
Textfield1 Textfield2 Textfield3
Textfield4 Textfield5 Textfield6

(After the user hits SUBMIT the content (value) of those textfields are outputed into a main textarea IN THE SAME PAGE!)

Any idea?

Thanks a lot,
Gabi.
 
try this hope it helps.

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>

<html>
<head>
<title>Untitled</title>
<script>
function populateTextArea(f){

var text = &quot;&quot;;
for(var i = 0; i < f.length; i++ ){
var e = f.elements;
if(e.type == &quot;text&quot;){
text += e.value + &quot;\n&quot;;
}
}
document.g.summary.value = text;
}

</script>

</head>

<body>
<form onsubmit=&quot;populateTextArea(this); return false;&quot;>
<input name=&quot;t1&quot; type=&quot;text&quot;><br>
<input name=&quot;t2&quot; type=&quot;text&quot;><br>
<input type=&quot;submit&quot;>
</form>

<form name=&quot;g&quot; >
<textarea name=&quot;summary&quot;></textarea>

</form>

</body>
</html>
 
Thanks a lot...

I copy/pasted the code in a new html, I filled the text fields but nothing happened when I clicked 'Submit'...

Am I missing something?

Thanks again,
Gabi.
 
Gabi,

I tested the code in both ie and netscape and if you enter text in the text boxes and submit the text is copied into the text area - to them submit the text area you would need another submit button.

Hope this helps
 
I got it....

Thanks a lot for help!!!

Gabi.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top