New to Kendo UI for jQueryStart a free 30-day trial

Span

fields

A jQuery object of the span element which holds the selected text.

span

jQuery
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
    dataSource: [
      { name: "Apples" },
      { name: "Oranges" }
    ],
    dataTextField: "name",
    dataValueField: "name"
});

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

var span = dropdownlist.span;

span.css("background-color", "red");
</script>
Not finding the help you need?
Contact Support