GInfo : Un petit exemple

HTML

<div id="cache">Je suis un contenu caché</div>

<button id="un_bouton" onclick="document.getElementById('cache').style.display='block';">Un bouton</button>
<button id="un_autre_bouton">Un autre bouton</button>

CSS

#cache{
  display: none;
}

JavaScript

document.getElementById('un_autre_bouton').onclick = function(){
  document.getElementById('cache').style.display='block';
}