well you could modify my code
that's why i posted it.
code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
var YourSite = "http://www.example.com";
var YourData = "";
function getData() {
xmlhttp.open("GET", YourSite, true);
xmlhttp.onreadystatechange = stateChanged;
xmlhttp.send(null);
}
function stateChanged() {
if (xmlhttp.readyState==4)
if (xmlhttp.status==200)
YourData = xmlhttp.responseText;
}
that's just the bit that grabs the page and puts it into a variable.
you sound like you can parse it yourself.