View Single Post
  #4  
Old May 10th, 2005, 12:01 PM
HateEternal HateEternal is offline
Mac Metal Head
 
Join Date: Nov 2003
Posts: 821
Thanks: 0
Thanked 0 Times in 0 Posts
HateEternal is on a distinguished road
You could try using XMLHttpRequest

Code:
 
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "test.txt",true);
 xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) {
   alert(xmlhttp.responseText)
  }
 }
 xmlhttp.send(null)
I got the example from here: http://jibbering.com/2002/4/httprequest.html
Reply With Quote