awesomplete
awesomplete copied to clipboard
include a modal dialog on select
hello can you include a dialog box when you select an element from the list dropdown
Listening for the "awesomplete-selectcomplete" event you can then, trigger something like this.
yourAwesomplete.addEventListener("awesomplete-selectcomplete", function(event) {
// open your dialog box here
// event.text will have the chosen suggestion
});