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
Please have look for your solution it's good to go. Have look for Demo
$(document).on('change', 'input', function(){ var optionslist = $('datalist')[0].options; var value = $(this).val(); for (var x=0;x
Option 1 Here Option 2 Here