ul jQuery

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

Example - get ul element

<input id="combobox" />
<script>
$("#combobox").kendoComboBox();

var combobox = $("#combobox").data("kendoComboBox");

var ul = combobox.ul;
</script>
In this article