Javascript : fonction afficher / masquer
Résolu/Fermé
didy_gwatinik
Smoking bird
- Messages postés
- 352
- Date d'inscription
- samedi 17 novembre 2007
- Statut
- Membre
- Dernière intervention
- 30 mars 2010
Smoking bird
- Messages postés
- 870
- Date d'inscription
- mardi 11 mars 2008
- Statut
- Membre
- Dernière intervention
- 10 juillet 2011
A voir également:
- Javascript : fonction afficher / masquer
- Javascript : fonction afficher / masquer ✓ - Forum - Javascript
- Fonction afficher javascript - Articles
- Afficher/masquer champs en fonction d'un bouton radio ✓ - Forum - Webmaster
- Javascript afficher/masquer ✓ - Forum - Javascript
- Afficher/masquer un div à la fois avec javascript ✓ - Forum - Javascript
2 réponses
Smoking bird
22 janv. 2009 à 16:39
- Messages postés
- 870
- Date d'inscription
- mardi 11 mars 2008
- Statut
- Membre
- Dernière intervention
- 10 juillet 2011
22 janv. 2009 à 16:39
<script type="text/javascript"> function montre_div(nom_div) { if(document.getElementById(nom_div).style.display="none") document.getElementById(nom_div).style.display="none"; else{document.getElementById(nom_div).style.display="block";} } </script>
22 janv. 2009 à 16:39