If I enter "I" in the box, I get India, United States, United Kingdom and Israel. REASON: All have an "i" in them...somewhere. This seems silly, to me any way. My thinking is it should only display India and Israel. They have "i" in the first letter. Is there a trick to get this to happen? To get the suggested items to take note of the order of the letters?
<!DOCTYPE html>
<html>
<head>
</script>
</head>
<body>
<input type="text" list="countries" name="mycountry" />
<datalist id="countries">
<option value="India">India</option>
<option value="United States">United States</option>
<option value="United Kingdom">United Kingdom</option>
<option value="Germany">Germany</option>
<option value="France">France</option>
<option value="Israel">Israel</option>
</datalist>
</body>
</html>