I've implemented jQuery Autocomplete for a client. Now they want me to highlight (e.g. make bold) the the portion of the result that matches the text they've typed.
e.g. the user types "something", and the results are as follows:
something a
something b
Another something
Do something else
Is this functionality built into jQuery Autocomplete? If so, what is it?
Or is this something I'll have to implement myself? If so, where do I start with that?