GInfo : Un petit exemple

HTML

<div id="cache" style="display:none;">Je suis un contenu caché</div>

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

<script>
  document.getElementById('un_autre_bouton').onclick = function(){
    document.getElementdById('cache').style.display='block';
  }
</script>