I have two forms.
Form A has three text input; A1, A2, A3. Form B has one text input, B1.
Whenever you type in any of the inputs on Form A, Form B should get updated, right away, with all three inputs from Form A. If one of the Form A inputs is empty, a 0 should replace it in B1.
For example, if I'm typing "test" in A1 and leave A2 and A3 empty, B1 should reflect: test+0+0. If I'm typing "test" in A1 and "help" in A2, and leave A3 empty, then B1 should reflect: test+help+0
Can anyone assist with this? I have very limited experience with Javascript so I'm not even sure how to search for such aspects of this feature. Can someone point me in the right direction?