Removed # from sample code tab target otherwise the example doesn't work with error "Syntax error, unrecognized expression: ##panel2"
```html
<ul class="tabs" data-tabs id="example-tabs">
<li class="tabs-title is-active"><a href="#panel1" aria-selected="true">Tab 1</a></li>
- <li class="tabs-title"><a data-tabs-target="#panel2" href="#panel2">Tab 2</a></li>
+ <li class="tabs-title"><a data-tabs-target="panel2" href="#panel2">Tab 2</a></li>
</ul>
```