Reputation: 2821
<ul> <li><a href="#tabs-1">Tab1</a></li> <li>@Html.ActionLink("Test", "Test")</li> </ul>
Upvotes: 1
Views: 166
Reputation: 20240
From the docs you can learn how to use the select callback for that.
select
$('#example').tabs({ select: function(event, ui) { var url = $.data(ui.tab, 'load.tabs'); if( url ) { location.href = url; return false; } return true; } });