comment afficher le contenue d un div en javascript code example
Example: afficher un div qui etait cache en javascript
//code html
<div id=identifiant_de_ma_div>Votre contenu est placé ici</div>
//code Js
//Pour masquer la division :
document.getElementById(identifiant_de_ma_div).style.display = none;
///Pour afficher la division :
document.getElementById(identifiant_de_ma_div).style.display = block;