Tabs Bookmarked with Direct Link
Hello, thanks for any and all help. My jquery tabs code is below. I need to add the ability for tabs to be directly linked from outside pages to the hashed url.
jQuery(document).ready(
function
() {
jQuery(
'.tabs .tab-links a'
).on(
'click'
,
function
(e) {
var
currentAttrValue = jQuery(
this
).attr(
'href'
);
jQuery(
'.tabs '
+ currentAttrValue).show().siblings().hide();
jQuery(
this
).parent(
'li'
).addClass(
'active'
).siblings().removeClass(
'active'
);
e.preventDefault();
});
});