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

Focuses the editable area and selects the range described by the range parameter.

Parameters:rangeRange

The Range object that describes the new selection.

<textarea id="editor"></textarea>
<div id="container"></div>
<script>
$("#editor").kendoEditor();
var editor = $("#editor").data("kendoEditor");
var range = editor.createRange();
range.selectNodeContents(editor.body);
editor.selectRange(range);
</script>
Not finding the help you need?
Contact Support