J-Thread
Full Member
Posts: 467 Reputation: 8
– / / –
Joined: Jul 2004
|
RE: [Help] Searching pages
Wouldn't:
code: var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
function getIt(url) {
xmlhttp.open("GET", url, true);
xmlhttp.onreadystatechange = stateChanged;
xmlhttp.send(null);
}
function stateChanged() {
if (xmlhttp.readyState==4)
if (xmlhttp.status==200)
var thevar = xmlhttp.responseText;
// Do here what you like with the var
}
do the trick?
|
|