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

Open a specific tab using a link #1

Closed tobstop closed 11 years ago

tobstop commented 11 years ago

Hi,

great plugin! Is it possible to open a specific tab using a link (on the same page)?

samsono commented 11 years ago

Hi,

Thanks for using this plugin, here is the simple solution.

  1. Add an "Id" to tab li for eg <li id="openTab">tab heading</li>
  2. Call the below function on "click".
    
    function(){
      $('#openTab').click();
    }
    
ghost commented 11 years ago

Awesome plugin, thanks. How about opening a specific tab from a link on a different page?

ghost commented 10 years ago
// if the URL contains a hashtag, trigger click on that tab.
if (window.location.hash !== '') {
    var thisUrlHash = window.location.hash;
    $('#DivTagName').find(thisUrlHash).click();
}

I called this in a separate js file.

ginanjarputra commented 9 years ago

can i see full code for opening a specific tab from different page?