Why does this return error 101 (javascript)?
xmlhttp=new XMLHttpRequest(); xmlhttp.open(‘GET’,’http://google.com’,false); xmlhttp.send(null); document.write( xmlhttp.responseText ); It returns “Uncaught Error: NETWORK_ERR: XMLHttpRequest Exception 101” Also I’ve not got the the ActiveXObject(“Microsoft.XMLHTTP”) for IE5/6 because I’m creating an extension for Google Chrome so it isn’t needed.