Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Organic Tabs (Link to a specific tab) Re: Organic Tabs (Link to a specific tab)

#94074
moabxj01
Member

A quick and dirty “fix”:


(function(){
var hash = window.location.hash;
var $a = jQuery('a[href=' + hash + ']');

if($a.length>0){
$a.click();
}
})();

Place this below $(“example-one”).organicTabs(); and it should work…modifying the plugin directly would be better though.