このようにJquery UI Autocompleteプラグインを使用しています
$("#home_search_top").autocomplete({
source: "/theme/site_theme/search.php",
minLength: 2,
parse: function() {
console.log("hello");
return false;
},
select: function(event, ui) {
$('#state_id').val(ui.item.id);
$('#abbrev').val(ui.item.abbrev);
}
});
$("#home_search_top").autocomplete({
source: "/theme/site_theme/search.php",
minLength: 2,
loadingClass : "res-search"
});
解析が完了したときに someDiv を表示または非表示にするにはどうすればよいですか?