PureSearch/ajax.js
2016-09-15 20:13:51 -04:00

8 lines
No EOL
202 B
JavaScript

xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","http://www.google.com/search?q=features+of+XML", true);
xmlhttp.send(null);
if (xmlhttp.readyState==4) {
alert(xmlhttp.responseText);
}