I want to disable the suggestions for previously entered texts on a <input type="text" list="stuff">
which provides a drop down list to choose from via a <datalist>
.
This behaviour causes some entries to be shown twice and sometimes problems occur when selecting them.
I tried <input type="text" autocomplete="off">
- in Firefox it works just like I want it to but Chrome disables the suggestions from the <datalist>
as well.
I would be happy for any solution at all even if it involves JavaScript, thanks.