I am in the process of writing a script that builds upon user input,
I have some fields that its values need to be quired from the database,
and if no entry fo
I also changed the onBlur function to select the first item if they click off the search box - its more intuitive to users:
.blur(function () {
$(this).val("");
if ($(".token-input-selected-dropdown-item").length>0)
add_token($(".token-input-selected-dropdown-item").data("tokeninput"));
hide_dropdown();
})