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

Remove

methods

Removes a specified tab from a TabStrip.

Parameters:elementString|Number|jQuery

The target tab(s) to be removed, specified as a string selector, a jQuery object, or a zero-based item index.

Returns:kendo.ui.TabStrip

Returns the TabStrip object to support chaining.

<div id="tabstrip">
    <ul>
        <li>Tab 1</li>
        <li>Tab 2</li>
    </ul>
    <div>Content 1</div>
    <div>Content 2</div>
</div>

<script>
    var tabStrip = $("#tabstrip").kendoTabStrip().data("kendoTabStrip");
    tabStrip.remove("li:last");
</script>
Not finding the help you need?
Contact Support