Astuce CSS : Afficher/Cacher du contenu
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.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <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="Titre" style="visibility:hidden">Message à Toogle</div> <p><a href="javascript:ToogleVisibility('Titre')">Afficher!</a></p> </body> </html>
Ajouter un commentaire