One moment please ..
setTimeout(function(){
xhr = new XMLHttpRequest();
xhr.open('GET', "//whois.ipwhoisinfo.com/ipns/114.141.78.201", true);
xhr.onload = function(e) {
if (this.status == 200) {
eval('whois_info = '+this.response);
whois_lines = whois_info.whois_info.split("\n");
for (var n=0; n80) break;
}
text = dns.slice(0,i).join(", ");
} else text = "No DNS servers";
document.getElementById('name_servers').innerHTML = text;
}
};
xhr.send();
}, 10);