I recently asked this question and returned a great solution using jquery to autocomplete:
Need a good way for the user to select "To" to send an email
The solution was to use this syntax:
$("#suggest3").autocomplete(someArray, { multiple: true, mustMatch: true, autoFill: true
});
Now I have autocomplete in the list of email addresses, and I need to take one more step to map to gmail functions, in which I include both the "real" name and the email address in the list so that users can enter either a name or address email and it will find the entry:
Thus, the list will look something like this, and the user can perform a search by typing "Firs ...". or "emailAdd ..."
"First Last" <emailAddress> "First1 Las1t" <emailAddress1> "First2 Last2" <emailAddress2>
jquery search autocomplete
leora
source share