archive/gyrio/index.js

7 lines
163 B
JavaScript
Raw Normal View History

2017-09-30 18:30:11 -04:00
function getWebsite(geturl) {
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET", geturl, false);
xmlhttp.send();
var data = xmlhttp.responseText;
}