I want to hide datalist
value. Am using this code
<input list="options" oninput="console.log(this.value);" />
<datalist id="options">
<option value="1">Product 1</option>
<option value="2">Product 2</option>
<option value="3">Product 3</option>
</datalist>
I mean in the inputbox this showing values
and product 1
i need to show only product 1,2,&3...
Note: Here am passing value 1,2,3
so i just want to hide that only
here my code https://jsfiddle.net/69u5Leoa/