Search code examples
javascriptjquerysemantic-ui

Can you disable tabs in SemanticUI?


It's possible disable a tab on semantic-ui Tab


Solution

  • Changing

     <a class="item" data-tab="examples">Examples</a>
    

    to

    <span class="item disabled">Examples</span>
    

    appears to do the trick.