Hi geowmyers,
That’s clear thanks!
The JS code snippet you are using now is working fine, but it works when you directly hit a link to the targeted tab in your browser. I mean if you opened a new tab in your browser and pasted this link and hit enter:
http://rossdd.org/students/#x-legacy-tab-5
It will go directly and open your tab. “The Breathe tab in this case”.
So, what doesn’t work is linking to tabs internally on the same page. To achieve please follow these steps:
1- You will need to edit each “Feature List Item” and clear all the link data you added there and use the “Content” field instead, with something like that:
<a class="link_tab1" data-tab-id="1" href="#x-legacy-tab-1">Read more</a>
here:

2- As you can see there are three things you need to change in this link:
href
> that should be the link to your tab.
data-tab-id
> make sure to change the ID according to the tab link, if the link is #x-legacy-tab-1
then the ID is “1”.
class
> each “Feature List Item” must have its own custom class that will be used in the JS code.
3- On the same “Feature List Item” options page, scroll down to assign the same custom class you set in the previous step:

4- Do that for the “Feature List Item” you have and any other link you would like to have on the page that will link to a tab.
5- Finally, update the JS snippet with this one:
jQuery( function($){
$( window ).on('load resize', function(){
scroll_to_tab ( location.href.split("#x-legacy-tab-").slice(-1)[0] );
});
$('.link_tab1 a').on('click', function() {
scroll_to_tab($(this).data('tab-id'));
});
function scroll_to_tab ( tab_id ) {
var tab_nav = $('.x-nav-tabs .x-nav-tabs-item a[data-x-toggleable="' + tab_id + '"]');
if(tab_nav.length >=1) {
$( tab_nav ).trigger('click');
$('html,body').stop().animate({scrollTop: $(tab_nav).offset().top - ( $('.x-navbar').height() + 50 ) },700 ,'swing');
}
}
});
as you can see this is the part added:
$('.link_tab1 a').on('click', function() {
scroll_to_tab($(this).data('tab-id'));
});
You must repeat this part for every link you want to add on your page, make sure to change link_tab1
to suit your new link.
I hope this helps.
Thanks.