summaryrefslogtreecommitdiff
path: root/ws2a/bugsload.js
blob: d1662a9a5882caeba6872396d22df469726c270a (plain)
1
2
3
4
5
6
7
8
9
10
function loadLastBugs() {
  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (xhttp.readyState == 4 && xhttp.status == 200) {
     document.getElementById("bugstable").innerHTML = xhttp.responseText;
    }
  };
  xhttp.open("GET", "/cgi-bin/bugsdata.cgi", true);
  xhttp.send();
}