Home › Forums › JavaScript › Organic Tabs (Link to a specific tab) › Re: Organic Tabs (Link to a specific tab)
January 5, 2012 at 6:39 pm
#94074
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.