aboutsummaryrefslogtreecommitdiff
path: root/test/request.js
blob: bfcf5921e745b25490410f9ce5f321a4764237a7 (plain) (blame)
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
31
32
33
34
35
36
37
38
function subAction(action, btn) {
  trDom = btn.parentElement.parentElement;
  trData = trDom.children;

  trId = trData[0].innerHTML;
  trFrom = trData[1].innerHTML;
  trTo = trData[2].innerHTML;
  trName = trData[3].innerHTML;

  console.log(trId);
  console.log(trFrom);
  console.log(trTo);
  console.log(trName);

  //for (var i = 0, len = trData.length - 1; i < len; i++) {
  //console.log(i + ": " + trData[i].innerHTML);
  //}

  if (action == 'delete')
    if (confirm("Are you sure you want to delete this reservation?"))
      trDom.remove();

  // Send XHR
  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function () {
    if (this.readyState == 4 && this.status == 200) {
      document.getElementById("notice").innerHTML = this.responseText;
    }
  }
  xhttp.open("POST", "edit.inc.php", true);
  xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  data_str = "action=" + action
  data_str += "&id=" + trId
  data_str += "&from=" + trFrom
  data_str += "&to=" + trTo
  data_str += "&name=" + trName
  xhttp.send(data_str);
}