I'm trying to make a users dropdown:
<datalist id="list">
<option value="User_01"></option>
<option value="User_02"></option>
<option value="User_03"></option>
</datalist>
<input type="text" list="list" oninput="alert(this.value)"/>
When I type/choose an option from the list, the event "oninput" is triggered.
However, when I write the exact same value inside the input first, and only then click on the option, the event will not trigger.
Is there any way for me to trigger the event even if the input value is the same as the option value?
To make myself clear:
- Typing "User_01" on the input field.
- Choosing the "User_01" option.
- The event is not triggered.
oninput is triggeren only when the value of the input changes. Since you already typed the exact value into the field, it does not change, so there is no event. I found no way to trigger an event when someone selects an option from datalist, that matches the value, but you still can use your oninput event to check if the value matches any of the options.
change the event in your code:
and add some js to check the value against the list of options:
jsfiddle: https://jsfiddle.net/sq16vxzo/
includes() gives you simple true/false and indexOf() gives you the index of option matching the current value.