focus

Focuses the widget.

Example - focus the widget

<input id="textbox" />
<script>
    $("#textbox").kendoTextBox();
    var textbox = $("#textbox").data("kendoTextBox");
    textbox.focus();
</script>
In this article