ul jQuery

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

Example - get ul element

Open In Dojo
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList();

var dropdownlist = $("#dropdownlist").data("kendoDropDownList");

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