input jQuery
A jQuery object of the visible input element, where the user types.
Example - get input element
<input id="combobox" />
<script>
$("#combobox").kendoComboBox();
var combobox = $("#combobox").data("kendoComboBox");
var input = combobox.input;
</script>