focus

Focuses the widget.

Example - focus the widget

<span id="chip"></span>
<script>
    $("#chip").kendoChip({ label: 'Chip text' });
    var chip = $("#chip").data("kendoChip");
    chip.focus();
</script>
In this article