|
Sample code snippet -
<td align="right">Check Amount: </td>
(1) <td><input type="text" name="CHK_input_1" size="19"style="text-align:right" onkeyup="calcCB();" onBlur="currency(this); calcCB();" tabindex="26">
(2) <input type="hidden" name="OBKey__53_1" id="kw_check_amount" >
For various database reasons, I need to be able to populate a hidden field to be used as a keyword in our system based on the first input field.
For instance, I need to enter a check amount into field (1) at the same time I need to populate the hidden text field (2) with the same data.
All references I have found so far are for populating textbox through a dropdown list. This is not what I need to do.
Do I need to create a method to populate the hidden field with the same information?
I would need to do this multiple times on the same form. If so How would I go about performing this?
Is there any easier way to populate both form fields at the same time?
|