sergiodlopes / jquery-flexdatalist

Flexible input autocomplete/datalist plugin for jQuery
http://projects.sergiodinislopes.pt/flexdatalist/
MIT License
365 stars 84 forks source link

How i can clear input after onclick? #244

Open autoexpert opened 1 year ago

autoexpert commented 1 year ago

if input already filled how i can clare after on click $('#my_input_id__search-flexdatalist').on('click', function () { alert('test'); }); $('#my_input_id').on('click', function () { alert('test'); }); don't work help me please

autoexpert commented 1 year ago

solution

$(document).on ("click", "#my_input_id-flexdatalist", function () { $(this).val(''); });