Hi technicalrs,
I have added the following code to your site:
<script>
jQuery(document).ready(function($) {
// Add click event handler for menu tabs
$('.sppb-modern-tab ul.sppb-nav li a').on('click', function(event) {
// Prevent default anchor behavior
event.preventDefault();
// Remove 'active' class from all tab contents
$('.sppb-tab-pane').removeClass('active');
// Get the target tab content id
var targetTabId = $(this).attr('href');
// Add 'active' class to the target tab content
$(targetTabId).addClass('active');
// Optionally, you can add your own logic to handle tab switching here
console.log('Clicked tab:', targetTabId);
});
});
</script>