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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mirror Text Box Value in another Text Box 1

Status
Not open for further replies.

sipps

Technical User
Feb 9, 2003
133
GB
Hi all,

How can I mirror what a user types into one text box into another text box?

I think it uses the onChange event so that as soon as the user starts typing into TextBoxA, TextBoxB shows TextBoxA's value?

Thanks

sipps
 
its onkeyup/down/press event

<input type=text ..... onkeydown="document.FormName.OtherTextField.value=this.value">

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top