Hi
Server returns this file:
<?xml version="1.0" ?>
<markers>
<marker found="Keychain" lat="37.441" left="Book" lng="-122.141" />
<marker found="Water Bottle" lat="37.322" left="Necklace"
lng="-121.213" />
</markers>
And my responseXML is always null. The code is below
var request = GXmlHttp.create();
//open the request to storeMarker.php on your server
request.open('GET', '/lbs/' + getVars, true);
request.onreadystatechange = function() {
if (request.readyState == 4) {
//the request is complete
var xmlDoc = request.responseXML;
alert(xmlDoc);
If I write alert("ok"), than alert popups and write ok, and
immediatelly page render this XML file.
Can anone suggest the problem?