var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
//document.getElementById("IPS").innerHTML = xhttp.responseText;
sprocess(xhttp.responseText);
}
};
xhttp.open("GET", "https://api.ipgeolocation.io/ipgeo?apiKey=574713e70d5c40cf8406d27fac874599&ip=52.14.75.150", true);
xhttp.send();
function sprocess(param) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
//alert("");
}
};
xhttp.open("GET", "https://www.indiaonline.me/CP/stats.asp?param=" + param + "&ref=" + (new URL(parent.window.location.href)).searchParams.get("ref") + "&refer=68747470733A2F2F7777772E696E6469616F6E6C696E652E6D652F61727469636C65732F7475746F7269616C73" + "&did=" + "&doc=" + parent.window.location.href + "&os=" + navigator.platform + "&agnt=" + navigator.userAgent + "&rtvstr=n" , true);
xhttp.send();
}