Make jquery autocomplete not to fill the input value with the label of selected item -
is there way make jquery autocomplete plugin respond "select" callback, not fill target input label value of selected item after user selection?
i trying still no success, waiting help...
regards. larry
$('#ac').autocomplete({ source : ["hello", "how", "do", "you", "do"], select: function(event, ui){ settimeout(function (){ $('#ac').val(''); }, 1000) } })
Comments
Post a Comment