JQuery Autocomplete - format listing and only return a part to the text box
- by Jason
I'm using the JQuery Autocomplete and it's working just fine.
I'm using it to allow someone to search for users out of a database by searching on last name or id number.
Right now the drop down list that is created is the resultes of a SQL query and looks something like:
$row_rst['lName'] . ', ' . $row_rst['fName'] . " - " . $row_rst['user'] .…