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
|
<script language="javascript">
function ajax(page,cible)
{
var xhr3=null;
if(window.XMLHttpRequest)
{
xhr3=new XMLHttpRequest;
}
if(window.ActiveXObject)
{
xhr3 = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr3.onreadystatechange= function()
{
if (xhr3.readyState == 4) {
document.getElementById(cible).innerHTML=xhr3.responseText;
}
}
xhr3.open('GET',page,true);
xhr3.send(null)
}
</script>
</head>
<body>
<div id="hebergement"></div>
<div id="menuh"></div>
<a href="javascript:ajax('hebergement.html', 'hebergement');ajax('menuh.html', 'menu')">cliquez ici</a> |