PDA

View Full Version : auto populate



sbronson
05 Dec 2009, 12:02 AM
I need help with a form. I want to type the title in the first text area and auto fill the next to areas. But I still want to have control over the 2 text fields. Can someone help

dmcleary
05 Dec 2009, 08:03 AM
Hi sbronson,

Is this what you meant?

<input type="text" onkeyup= "document.getElementById('boxTwo').value = this.value;" />
<input type="text" id="boxTwo" value="" />

Haven't testing it and it very bare bones but should give you the right idea.

Best wishes,


David