Ajax example

Is-swar tal-Kottonera

Cottonera lines

Click on the various images for more information:
St Paul's Gate St John's Gate St Clement Gate Notre Dame Gate St James Gate St Louis Gate San Salvatore Gate 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);
    }