summaryrefslogtreecommitdiff
path: root/app/utils/static/autocomplete.js
blob: 514a06449bf5dc59a853e3d6b3489abdc0325d39 (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();
});