The JQuery autocomplete function we are using is for the most part very good, but it had a few little quirks that I wanted to iron out so that it functioned exactly how our users would expect. It used a | as a separator, and it removed spaces in between entries. So a list of email addresses would be entered like this:
email@address.com|email2@address.com|email3@address.com
I changed the separator to a comma, and automatically added one space in between email addresses. This is what gmail does, and I think it is what our users will expect.
email@address.com, email2@address.com, email3@address.com

