Hello I am using jQuery UI autocomplete.
I am getting values and labels from the drop down area. I will write the value in a hidden input and use it later. I could d
just add return false to your function like this, FIDDLE
$("#tags").autocomplete({ source: yerler, select: function (event, ui) { $("#projeKatmanRaporCbx").val(ui.item.value); $( "#tags" ).val( ui.item.label ); return false; } });