mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 10:53:15 +08:00
14 lines
260 B
Python
14 lines
260 B
Python
|
|
function makeAutocomplete(sel) {
|
|
sel.autocomplete('/examples/autocomplete-products/', {
|
|
delay: 200,
|
|
formatItem: function(row) {
|
|
return row[1];
|
|
}
|
|
});
|
|
}
|
|
|
|
$(function() {
|
|
makeAutocomplete($('.autocomplete-me'));
|
|
})
|