This was my first time using jQueryUI autocomplete, I managed to get it working, there is just one more functionality that our client needs, i.e to have clickable categories in the search suggestions.
For example, look at this image:

Its from newegg website, When I search "nvidia", a suggestion list populates, besides just the item name the category it lies in is also shown but the category appears as a text and not link(i.e category itself is not clickable). I do the same, I return the search results from a service running on the server and populate the suggestions. I don't need to return links, I can just split the returned string at "in" to get the "category" and then produce the link as
<a href="someinternalpage.aspx?cat=category">Category</a> (This code is just for quick Idea) . But now comes the main problem, how do I populate the suggestions with the above clickable link?
Any help would be most welcomed.