samsono / Easy-Responsive-Tabs-to-Accordion

Easy responsive tabs - is a lightweight jQuery plugin which optimizes normal horizontal or vertical tabs to accordion on multi devices like: web, tablets, Mobile (IPad & IPhone). This plugin adapts the screen size and changes its action accordingly.
Other
603 stars 259 forks source link

Close all tabs on click of another element. #44

Open jesspritchard opened 10 years ago

jesspritchard commented 10 years ago

Hi,

Is it possible to have an element (say a link) that when clicked closes all opened tabs?

Thanks.

chrisdemetriad commented 10 years ago

I am looking for this too.

ksudac commented 10 years ago

I'm also looking to collapse tabs, anyone figure it out?

Cammoy commented 9 years ago

Not fully tested but this should work.

THE HTML Close Open Tabs

JQUERY $('#closeAllTabs').click( function() { $(ul#resp-tabs-list li).removeClass('resp-tab-active"); $(.resp-tab-content .resp-tab-content-active ).hide(); });