// source --> https://preprod.posonet.net/wp-content/themes/posonet/js/scripts.js?ver=6.1.1 

jQuery(document).ready(function($) {
	$('.tab-button').each(function () {
        var section_id = $(this).attr('href');
        $(this).removeAttr('href');
        $(this).click(function() {
            $(this).closest(".et_pb_row ").find('.et_pb_button').removeClass("active-tab");
            $(this).addClass("active-tab");
			$('.tab-content').hide();
			$(section_id).show();
        });
    });
});