I'm using a <datalist> to allow selection of an option, yet still allow type-in values. Here's what I mean:
<input list="cities" name="city">
<datalist id="cities">
    <option value="Portland">
    <option value="San Francisco">
</datalist>
Once a city is chosen, opening the dropdown only shows that city unless I manually hit backspace to clear it. I thought I might fix that with jquery like this:
$('input[name=city]').click(function() {
  $('input[name=city]').empty();
});
That's great, but it doesn't work. I've seen in other examples how to remove a 'selected' flag (here also), but I don't see that it applies to a <datalist>.
Here's a jsfiddle: https://jsfiddle.net/tedder/ekaLc64t/2/
I am not sure if this is what you want, but try to change the code to:
  $('input[name=city]').focusin(function() {
    $('input[name=city]').val('');
  });
  $('#xx').click(function() {
    $('input[name=city]').val('');
  });
https://jsfiddle.net/ekaLc64t/9/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With