summaryrefslogtreecommitdiff
path: root/app/utils/static/autocomplete.js
blob: ad0c70d97a557cff65a2b17a8f89fa28da779e29 (plain)
1
2
3
4
5
6
7
8
9
10
function autoCompleteItems() {
var item = document.getElementById('id_ap');
var singlePresetOpts = new Choices(item, {
    searchPlaceholderValue: 'Search for Animal',
    placeholder: true,
});
}
document.addEventListener("DOMContentLoaded", function(event) { 
    autoCompleteItems();
});