views:

68

answers:

1

I see there is full ajax mode but I wanted to see if there is a hybrid mode where some tabs are ajax driven and some static.

+1  A: 

Sure. Each link is independent of the other... The AJAX example on the demo page has both a static tab and ajax loaded tab.

Example

<div id="tabs">
    <ul>
        <li><a href="#tabs-1">Static</a></li>
        <li><a href="ajax/content1.html">AJAX</a></li>

    </ul>
</div>
Doc Hoffiday