$(".someClassWithMultipleItemsOnDOM").autocomplete({
minLength:2,
source .....(ajax call)
.....
}).focus( function() {
/*some code*/
})
.data( "autocomplete" )._renderItem = function( ul, item ) {
/*render item for making search text bold*/
};
.data("autocomplete")._resizeMenu = function () {
/*resize code to set the size of autocosearch drop down box*/
};
サイズ変更メニュー行で構文エラーがあるというエラーを受け取りました。両方の機能を一緒に使用する方法はありますか。同様の方法で。