Sep 3, 2004 #1 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
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
Sep 3, 2004 1 #2 vbkris Programmer Jan 20, 2003 5,994 IN its onkeyup/down/press event <input type=text ..... onkeydown="document.FormName.OtherTextField.value=this.value"> Known is handfull, Unknown is worldfull Upvote 0 Downvote
its onkeyup/down/press event <input type=text ..... onkeydown="document.FormName.OtherTextField.value=this.value"> Known is handfull, Unknown is worldfull