WordPress :: Divi Theme :: Scroll-To Anchor Inside Tab Module
<script>
(function($) {
$(window).load(function() {
setTimeout(function() {
var hash = window.location.hash,
$tab = $(hash).parents('.et_pb_tab');
if ('' !== hash && $tab.length) {
var $tab_controls = $tab.parent().prev(),
tab_class = $tab.attr('class').replace('et_pb_tab clearfix ', ''),
$tab_control = $tab_controls.find('.' + tab_class);
$tab_control.find('a').trigger('click');
setTimeout(function() {
et_pb_smooth_scroll($(hash), false, 800, 'linear');
}, 500);
}
}, 900);
});
})(jQuery);
</script>