This version of the autocomplete allows the user to type a few letters and see all matching words from the UAT.
Enabling the autocomplete is easy. Just use jquery to select the input or textarea element you want to enable with the autocomplete, and use the uatAutocomplete function:
$("#uat-autocomplete-single").uatAutocomplete()
This version of the autocomplete allows the user to select multiple, comma-separated phrases.
To enable multiple selection, pass {"multi" : true} to the options, like so:
$("#uat-autocomplete-multi").uatAutocomplete({ multi: true })
$("#uat-autocomplete-multi").uatAutocomplete({minLength:1})