HTML5 datalist value vs. inner-text
I have an issue that is manifesting between Chrome and Firefox's handling of the HTML5 datalist element. I may be abusing it, which Firefox is handling the way I expect, but Chrome is not. I have not tried it on Opera. This is for an in-house page, so I can control the browser being used. I set a value, as well as the inner-text, as in: <input list="Names" placeholder="Enter Name or ID" name="txtSearchValue" autocomplete="off"/> <datalist id="Names"><%=OptionsList%></datalist> The server-side value "OptionsList" gets built dynamically from a database query. The end result looks, approximately,