jquery autoComplete append
- $('.autoPhase').autocomplete({
- source: 'files_json/auto_Phasecode.php',
- minLength: 1,
- select:function(evt, ui)
- {
- form_edit.proj_PhaseCodes.value = ui.item.phaseCode;
- }
- });
I have the above autocomplete code. Works great!! BUT what I would really like to do is append the ui returned value to the form_edit.proj_PhaseCodes.value rather than just store the value.
TIA for your assistance
jdadwilson (newbie)