quote:
Originally posted by John Anderton
You could try using XMLHttpRequest.open
code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", urlhere, true)
But don't forget the xmlhttp.send()! Otherwise it won't do anything.
Besides, we have a very nice tutorial about all this here:
[Tutorial] Communicating with web pages
Bah, got beaten again.