$(".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*/
};
我在调整大小菜单行时收到错误,即存在语法错误,有没有办法同时使用这两个功能。以类似的方式。