Mission Highlights

Photos from all Force on Force organizations

Choose Your
Gallery

Join Our Pro Staff!

jQuery(document).ready(function($){ const tabMap = { 'bass-gallery': 0, 'buck-gallery': 1, 'hog-gallery': 2, 'redfish-gallery': 3, 'duck-gallery': 4 }; $('a[href^="#"]').click(function(e){ const id = $(this).attr('href').replace('#',''); if(tabMap.hasOwnProperty(id)){ e.preventDefault(); // Trigger the tab via Elementor's API const tabs = $(this).closest('body').find('.elementor-tabs-wrapper'); tabs.each(function(){ $(this).find('.elementor-tab-title').eq(tabMap[id]).trigger('click'); }); // Scroll smoothly const target = $('#'+id); if(target.length){ $('html, body').animate({scrollTop: target.offset().top}, 500); } } }); });