If I set an input text box connected to a datalist-options, in order to suggest pre-coded values, this is what happens:
- The text field shows properly.
- When I start typing, one or more coincident "options" from the datalist are shown at the bottom of the available screen.
- When one option is selected, the data contained in it is NOT transcript to the input field.
The same webtest works fine on Ipad mini w/ios 15.
Try this simple code, it doesn't work:
<label for="browser">Choose your browser from the list:</label>
<input list="browsers" name="browser" id="browser">
<datalist id="browsers">
<option value="Edge">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>