1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Test d'interface</title>
<script language="javascript" type="text/javascript">
function masquer_div(nom_div) {
if (nom_div = 'joueur-profil-caracteristiques-graph') {
document.getElementById("joueur-profil-caracteristiques-graph").style.display = 'none';
document.getElementById("joueur-profil-caracteristiques").style.display = 'block';
} else if (nom_div = 'joueur-profil-caracteristiques') {
document.getElementById("joueur-profil-caracteristiques-graph").style.display = 'block';
document.getElementById("joueur-profil-caracteristiques").style.display = 'none';
}
}
</script>
</head>
<body onLoad="masquer_div('joueur-profil-caracteristiques-graph')">
<div id="joueur-profil-caracteristiques-graph">
<h2>Résumé des caractéristiques</h2>
Toto est là !<br/>
<a href="#" onClick="masquer_div('joueur-profil-caracteristiques')">Voir les stats</a>
</div>
<div id="joueur-profil-caracteristiques">
<h2>Caractéristiques</h2>
Toto est ici !<br/>
<a href="#" onClick="masquer_div('joueur-profil-caracteristiques-graph')">Voir le graph</a>
</div>
</body>
</html> |