• currentItem () : jQuery
    Get the currently selected tab DOM element.
    Returns
    jQuery the currently selected tab DOM element.
  • switchTo (url)
    Set the mobile TabStrip active tab to the tab with the specified url.

    Example

    <div data-role="tabstrip" id="tabstrip"> <a href="#foo">Foo</a> </div>
    
    <script>
        $(function() {
            $("#tabstrip").data("kendoMobileTabStrip").switchTo("#foo");
        });
    </script>

    Parameters

    url: String
    The url of the tab.