Working great with version 92 that was released today, thank you!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
the dropdown of the datalist element is not displaying with 20 tiems on Edge V91. With Chrome or Firefox it's ok.
you can try here (add item)
Tryit Editor v3.6 (w3schools.com)
<!DOCTYPE html>
<html>
<body>
<h1>The datalist element</h1>
<form action="/action_page.php" method="get">
<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">
<option value="Edge">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
<option value="Edge">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
<option value="Edge">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
<input type="submit">
</form>
<p><strong>Note:</strong> The datalist tag is not supported in Safari 12.0 (or earlier).</p>
</body>
</html>
Any idea?
Thanks a lot
Regards
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Working great with version 92 that was released today, thank you!
Great to see that you have a working release! The 64-bit version is working well now.
The 32-bit version still has the crashing issue. Can others confirm the same experience?
Now the 64-bit version has the crashing issue when trying to pick an option with the keyboard arrow keys. Not cool!
Even this simple example will crash Edge:
https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5\_datalist
Click in the input area and then use the arrow keys on the keyboard to try to pick an option.