1

Is it possible for jQuery UI Tabs to dynamically work like Angular UI Tabset?

Code taken from http://angular-ui.github.io/bootstrap/

<tabset>
    <tab ng-repeat="tab in tabs" heading="{{tab.title}}" active="tab.active" disabled="tab.disabled">
        {{tab.content}}
    </tab>
</tabset>

I checked the sample of jQuery UI Tabs in http://jsfiddle.net/queryj/CnEUh/1/

But it seems that it's mostly static. I am doing this because I need a tab navigation to work in IE8. Angular UI Tabset view works fine with its design however, each tab is not recognized. So I need to use jQuery UI as it supports IE8

3
  • Yes it's possible. One way to do it: stackoverflow.com/a/26598490/246811 Commented Feb 4, 2015 at 5:00
  • @PhilDegenhardt will it work with IE8? Commented Feb 5, 2015 at 5:27
  • I believe IE8's issues are with the use of custom elements. Using attributes or classes for your directive should overcome that issue. Commented Feb 5, 2015 at 5:31

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.