remove

Removes a specified tab from a TabStrip.

Remove a tab with ID, tab1 from a TabStrip

<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>

Parameters

element String|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.

In this article