vdw / Tabslet

Yet another jQuery plugin for tabs, lightweight, easy to use, mobile-friendly and with some extra features.
http://vdw.github.io/Tabslet/
Apache License 2.0
564 stars 110 forks source link

Collapse tabs? #52

Closed hatsforclowns closed 2 years ago

hatsforclowns commented 7 years ago

Is there a method for collapsing active tabs? Trying to manually override the style attr on a jQuery click event isn't working for me.

Would something like the below work?

  $('.tabs').tabslet({
    active: 1
  })

  $('.tabs a').click(function() {
    $('.tabs').tabslet('options', 'active', '0')
  })