Forum Moderators: open
When we enter these fields in our home-made data entry page, it was getting hard to remember all the codes, so I loaded the codes into a drop-down box right next to the text input field for reference. It helps 100%, but what would be ideal is to be able to actually click on the drop-down item and have it APPENDED to the text field for however many codes I need to enter.
<input type="text" name="keywords">
<select>
<option value="ual">United Airlines (ual)</option>
<option value="del">Delta Airlines (del)</option>
<option value="swaa">Southwest Airlines (swa)</option>
etc, etc
</select>
Can it be done?