als (window.XMLHttpRequest) {
// code voor IE7+, Firefox, Chroom, Opera, Safari
xmlhttp=new XMLHttpRequest ();
}
anders {
// code voor IE6, IE5
xmlhttp=new ActiveXObject („Microsoft.XMLHTTP“);
}
xmlhttp.onreadystatechange=function () {
als (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById („content_center“) .innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open („KRIJG“, „page.php“, waar);
xmlhttp.send (); |