моя проблема понятна.
Я использую автозаполнение jquery, и я не знаю, почему он показывает мне только сообщение:
9 results are available, use up and down arrow keys to navigate.
Не показывая мне список результатов.
Это мой код:
<p class="select-c">
<label for="fcb">Location</label>
<input id="fcb" name="fcb" type="text">
</p>
$("#fcb").autocomplete({
source: function (request, response) {
$.ajax({
type: "GET",
dataType: 'json',
url: "../ws/city/" + request.term,
async: true,
success: function( data ) {
response( $.map( data, function( item,key ) {
return {
label: key,
value: item.id_town+"#"+item.id_province
}
}));
},
error: function (result) {
alert("Due to unexpected errors we were unable to load data");
}
});
},
minLength: 2
});
с результатами вроде:
В чем может быть проблема?