hrefTemplate

hrefTemplate - Specifies the mapping between the href column in the datasource and
the tab content url and also may define a visualization template. It may be a string value or a function.


<script type="text/javascript">
    $(function () {
        $("#tabs").shieldTabs({
            hrefTemplate: "{href}",
            dataSource: {
                 data: [
                     { title: "Tab1", content: "Tab1 content" },
                     { title: "Tab2", href: "/Content/Tab2.html" },
                 ]
            }
        });
    });
</script>