This repository was archived by the owner on Jan 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajax.js
54 lines (49 loc) · 1.43 KB
/
ajax.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//https://github.com/Crosenhain/tca2stats
//Really basic ajax stuff
var xmlHttp;
function getGameList(str)
{
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null) {
alert ("AJAX ERROR");
return;
}
var url2="gameList.php";
url2=url2+"?game="+escape(str);
url2=url2+"&sid="+Math.random();
xmlHttp.open("GET",url2,true);
xmlHttp.send(null);
xmlHttp.onreadystatechange= function () {
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
document.getElementById("individualservers").innerHTML=xmlHttp.responseText;
document.getElementById("individualservers").scrollIntoView();
}
}
}
function clearGameList()
{
document.getElementById("individualservers").innerHTML="";
document.getElementById("container").scrollIntoView();
}
function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
//Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}