ARTICLE AD BOX
I currently have an <input> text field that I'm using to let the user input a list of names they want to search within a database; I've given it a corresponding <datalist> with some standard options they might want to search. So far, so good: the suggestions are displayed as the user clicks or types as expected.
Is it possible to make it so that the suggestions will give another match after a separator?
For example, let's say I have this code:
<input type=text list=name_list id=name> <datalist id=name_list> <option value="joe"> <option value="jane"> <option value="bill"> </datalist>If the user inputs bill, j I would like the suggestion to display joe, jane.
Is this something I'd have to implement manually JS-side? I haven't been able to find any reference to builtin functions that would do this.
