Simple Example

new SelectAutocompleter('autocomplete');

Example with rich list

new SelectAutocompleter('autocomplete-users', {
  templateAttributes: ["email", "avatar"],
  template: '<img src="{attrAvatar}" alt="{rawText}" class="avatar" /> <h5>{highlightedText}</h5> <p>{attrEmail}</p>'
});