Я безуспешно пытался загрузить атрибут в теге body
<body onload=\"updateGroup()\">
ни функции, вызывающей внутри эха: echo "<script> updateGroup(); </script>";
Я открыт для критики!
function updateGroup(){
var http = new XMLHttpRequest();
var url = \"../requests/updateGroup.php\";
http.open(\"POST\", url, true);
//Send the proper header information along with the request
http.setRequestHeader(\"Content-type\", \"application/x-www-form-urlencoded\");
http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
}
}
http.send();
}