jQuery( document ).ready(function() { /* CLICK on the column and find the first link */ jQuery(".clickable-column.wp-block-kadence-column").click(function() { var href = jQuery(this).find("a").attr("href"); if (href != "") { window.location.href = href; } }); /* Pour l'accessibilité Web */ jQuery("button.dropdown-nav-special-toggle").each(function() { jQuery(this).attr("aria-haspopup", "true"); }); /* Table */ jQuery("figure.wp-block-table > table").each(function(index) { var headers = []; jQuery(this).addClass("standish-mobile-table-" + index); jQuery(this).find("thead > tr > th").each(function() { // Utiliser .html() et nettoyer le contenu pour récupérer uniquement le texte var rawHtml = jQuery(this).html(); var textContent = jQuery('