// ne pas afficher le bouton admin dans agencement, sinon oui var test=(window.top.location.href); const indexOfFirst = test.indexOf("admin"); if (indexOfFirst!=-1) { // alert("adm"+window.top.location.href+" " +indexOfFirst); if(document.getElementById("btnAdmin")) document.getElementById("btnAdmin").style.display='none'; } else{ // alert("admin OUI "+window.top.location.href+" " +indexOfFirst); if(document.getElementById("btnAdmin")) document.getElementById("btnAdmin").style.display='flex'; }