I've got a hidden input field that I want to append text to depending upon what a user enters in two other fields.
So,
<input type="hidden" name="name" value="" />
<input type="text" name="first" value="" />
<input type="text" name="second" value="" />
If the user types First in the first input field and Second in the second input field, I want the name input field to be "First Second"...
Tried using keyup and keypress, but can't get it to append to what's already there?