options Object
An object, which holds the options of the widget.
Example - get options of the widget
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete();
var autocomplete = $("#autocomplete").data("kendoAutoComplete");
var element = autocomplete.element;
var options = autocomplete.options;
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(options);
</script>