I used Jquery ui autocompletion with version 1.8.2, and later I switched to 1.8.11. I'm having problems.

1.8.2

1.8.11
$('#term').autocomplete({
minLength : 4,
source : rootPath+'/search',
select: function(event, ui)
{
window.location = ui.item.url;
}
});
thank
source
share