Astuce CSS : Afficher/Cacher du contenu

14 mars 2007 - 84 mots - xhtml css

Via un petit code Javascript, je cherchais le moyen de switcher l’affichage d’un texte.

Grâce à la fonction ToogleVisibility, cela deviendra tout simple.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
  <head>
    <title>Test</title>
    <script language="JavaScript" type="text/javascript">
    <!--
      function ToogleVisibility(Id){
        if(document.getElementById){
          if(document.getElementById(Id).style.visibility == "visible") {
            document.getElementById(Id).style.visibility = "hidden"
          } else {
            document.getElementById(Id).style.visibility = "visible"
          }
        }
      }
    //-->
    </script>
  </head>
  <body>
    <div id="idTitle" style="visibility:hidden">Message à Toogle</div>
    <p><a href="javascript:ToogleVisibility('idTitle')">Afficher!</a></p>
  </body>
</html>

Laisser un commentaire

Merci. Votre message a bien été enregistré.