Forum Discussion

KenFirch's avatar
KenFirch
Qrew Trainee
6 years ago

jQuery Tabs On New Dashboards?

On the new Quickbase dashboards, will the old jQuery Tabs still work?  They've actually worked pretty well for us, having the ability to have a LOT of links without using a lot of screen space.

Thanks!

<div id="tabs">
  <ul>
    <li><a href="#tabs-1">Tab 1</a></li>
    <li><a href="#tabs-2">Tab 2</a></li>
    <li><a href="#tabs-3">Tab 3</a></li>
  </ul>
  <div id="tabs-1">
      <p>Table of Tab 1 links below...</p>
    </div>
  <div id="tabs-2">
      <p>Table of Tab 2 links below...</p>
    </div>
  <div id="tabs-3">
      <p>Table of Tab 3 links below...</p>
    </div>
  <script type="text/javascript">
    $(function() {
      $("#tabs").tabs({collapsible: true});
    });
  </script>
</div>

 

No RepliesBe the first to reply