switchByFullUrl
Set the mobile TabStrip active tab to the tab with the specified full URL. This method doesn't change the current View. To change the View, use Application's navigate method instead.
Use switchByFullUrl when you want to active a tab that has URL with query string parameters.
Parameters
url String
The URL of the tab.
<div id="foo" data-role="view">
Button
<div data-role="footer">
<div data-role="tabstrip">
foo
bar
</div>
</div>
</div>
<script>
var app = new kendo.mobile.Application();
function onClick() {
var tabstrip = app.view().footer.find(".km-tabstrip").data("kendoMobileTabStrip");
tabstrip.switchByFullUrl("#foo?bar=qux"); //activate second tab
}
</script>