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 33 34 35 36 37 38 39
|
<html>
<head>
<style>
#menu{position:absolute; top:200px; left:200px; width:200px; height:200px; border:solid black 1px;}
#contenu{position:absolute; top:200px; left:600px; width:200px; height:200px; border:solid black 1px;}
.cel{border:solid black 1px; text-align:center; cursor:hand;}
</style>
<script langage="JavaScript">
function RefreshContenu(){
document.getElementById("contenu").innerHTML = "ton code html du nouveau div";
}
</script>
</head>
<body>
<div id="menu">
<table width="100%">
<tr><td onclick="RefreshContenu();" class="cel">Refresh</td></tr>
</table>
</div>
<div id="contenu">
contenu initial
</div>
</body>
</html> |