I am using a datalist and need to detect when the user selects something from the drop-down list. A similar question has been asked BUT I need it so that the event fires ONLY wh
You can manually check it on change. But you need to check change of the input of datalist.
$(document).on('change', 'input', function(){ var options = $('datalist')[0].options; var val = $(this).val(); for (var i=0;i
FIDDLE