jquery autocomplete select event is not working in jquery 1.4.4 version. i've requirement like, on select i need to do something
//this is the code iam using
$("#keyword").autocomplete('/topic/newSearchAjax', {
matchSubset : false,
select: function (a,b) {
$(this).val(b.item.value);
console.log(this);
alertMsg(value)
}
});
if it doesn't support in 1.4.4 is there any alternative to get this functionality?
refer this fiddle jsfiddle see if it helps.
JAVASCRIPT:
HTML: