Map of the Cottonera Lines (See Stephen C Spiteri, Fortifications in Malta) |
AJAX example explained
function nameofFunction() {
http.open(“GET”, “YourFile”, true);
http.onreadystatechange=function() {
if(http.readyState == 4) {
document.getElementById(‘bastion’).innerHTML = http.responseText;
}
}
http.send(null);
}