ul jQuery

A jQuery object of the ul element, which holds the available options.

Example - get ul element

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete();

var autocomplete = $("#autocomplete").data("kendoAutoComplete");
var ul = autocomplete.ul;

/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(ul);
</script>
In this article