(function ($) { const namespace = "autocomplete"; const version = "1.0.1"; if (typeof jQuery === "undefined") { alert(`${namespace} version ${version} plugin requires jQuery`); } const defaults = { // Text property of an array textProperty: "", // value propertu of an array valueProperty: "", // array dataSource: [], // default selected value defaultValue: "", // if text is not matched then default value // notMatchedValue: '', // delay in mili seconds seach text while typing keyboardDelay: 500, // close the dropdown on select closeOnSelect: true, // allow custom value allowCustomValue: false, // Show autocomplete on textbox focus showDropdownOnFocus: true, // Show dropdown on initialize autocomplete showDropdownOnLoad: false, // Add custom class to selected item selectedClass: "", // Add a custom class to autocomplete dropdown wrapClass: "", // function to excute on click onClick: null, // function to exute on value change onChange: null, }; const variables = { dataUID: "data-uid", dataIndex: "data-index", dataValue: "data-value", listTemplate: '