Aller au contenu
jQuery(function($){
function openTab(tabIndex){
$('.elementor-tab-title[data-tab="'+tabIndex+'"]').trigger('click');
}
function handleHash(){
var hash = window.location.hash;
if(hash === "#revo-hr"){ openTab(1); }
if(hash === "#revo-fc130"){ openTab(2); }
if(hash === "#revo-fc"){ openTab(3); }
if(hash === "#revo-nx130"){ openTab(4); }
}
handleHash();
$(window).on('hashchange', handleHash);
});