autocomplete and link
autocomplete and link
- $("#search").autocomplete(data, {
minChars: 1,
scrollHeight: 400,
max: 20,
fx: {
type: 'slide',
duration: 100
},
formatItem: function(row) {
return row.text + " <a href='/"+row.url+"/"+row.page+"/'>GO</a> ";
},
formatResult: function(row) {
return row.text;
}
});
Help me. href not work