Hi there,
I've a datalist like
<!DOCTYPE html>
<html>
<body>
<input list="foo" />
<datalist id="foo">
<option value="foo 1"></option>
<option value="foo 2"></option>
but the browser shows only 512 items from that list but I need all to display (1,700) while scrolling the datalist. When I look into the source code of that page in the browser all items are there. What's wrong? No such problems in Firefox.
Thanks in advance.