I'm struggling with the following problem. I use the jQuery autocomplete plugin to get a list of suggested values from the server. The list would look like this:
Username1|UserId1 Username2|UserId2
So if I start typing "U", a list of "Username1"
and "Username2"
pops up, as expected. I could chose the first item and the <input>
's value would become "Username1"
, but what I really want to send to the server is the user ID.
Can I somehow get a hold of the ID that is following the user name? I intend to do the form post on change of the text box. Maybe I'm just too blind to see it in the docs or to find it on Google?