I've been writing this code to dynamically load photo links from an XML document retrieved via AJAX. I have a global varibale xDoc that stores the response XML, and that I use in other functions so that I don't have to load the document every time. Please keep in mind that I am fairly new to JavaScript, so details would be great.

I get this error in Chrome: "Uncaught TypeError: Cannot call method 'getElementsByTagName' of undefined", and similar error messages in other browsers. However, my code still works in FireFox, Chrome, and Safari. When it comes to IE, however, every version fails to work. I cannot understand what is wrong, and why the element is undefined.

The error line is clearly marked in the code below. This is "eProject.link = eProject.photo.getElementsByTagName("edit")[0].firstChild.data;"

The data structure of my XML is as follows:

<project>
  <stuff>
  <stuff>
  <photos>
     <photo>
       <stuff>
       <edit>
     </photo>
  </photos>
</project>

Then this is the JavaScript:

// Initialize 
function init() {
    // Set the xml file 
    loadXMLDoc("../xml/featured.xml");
}
window.onload = init;

// Define xDoc global variable
var xDoc;
var proImages = new Array();

// Retrieve XML document as document object
function loadXMLDoc(url) {
    var req = null;
    try {
        req = new XMLHttpRequest();
        req.overrideMimeType("text/xml");
    }
    catch(e) {
        req = null;
    }
    if (req) {
        xDoc = null;
        req.open("GET", url, true);
        req.onreadystatechange = function() {
            if (req.readyState == 4) {
                if (req.status == 200) {
                    xDoc = req.responseXML;
                    if (xDoc && typeof xDoc.childNodes != "undefined" && xDoc.childNodes.length == 0) {
                        xDoc = null;
                    }
                    else {
                        eProject = xDoc.getElementsByTagName("project")[0];
                        eProject.id = eProject.getElementsByTagName("id")[0].firstChild.data;
                        getProject(eProject.id);
                    }
                }
            }
        }
        req.send(null);
    }
}



function getProject(id) {
count = xDoc.childNodes.length;
i = 0;
for (i; count; i = i + 1) {
    eProject = xDoc.getElementsByTagName("project")[i];
    eProject.id = eProject.getElementsByTagName("id")[0].firstChild.data;
    if (eProject.id == id) {

        // Remove old numbers
        cImages = document.getElementById("cImages");
        if (cImages.firstChild) {
            while (cImages.firstChild)
            {
                cImages.removeChild(cImages.firstChild);
            }
        }

        // Reset Array
        proImages.length = 0;

        eProject.photos = eProject.getElementsByTagName("photos")[0];
        eProject.phot = eProject.photos.getElementsByTagName("photo");
        pCount = eProject.phot.length;
        i = 0;
        for (i; pCount; i = i + 1) {
            /*
             * THIS IS WHERE THE ERROR IS
             */

            eProject.photo = eProject.phot[i];
            // This is the line of code that generates the error message
            eProject.link = eProject.photo.getElementsByTagName("edit")[0].firstChild.data;
            proImages[i] = eProject.link;
            dynamImg = document.getElementById('dynamImg');
            dynamImg.src = proImages[0];
            dynamImg.setAttribute('onclick', 'getNumImg(1)');
            nButton = document.createElement('button');
            nButtonTxt = document.createTextNode(i + 1);
            nButton.appendChild(nButtonTxt);
            nButton.type = "button";
            nButton.value = i;
            if (nButton.value == '0') {
                nButton.setAttribute('id', 'nButtonSelect');
            }
            nButton.setAttribute('onclick', 'getNumImg(' + i + ')');
            cImages.appendChild(nButton);
        }
        break;
    }
}

}

link|improve this question
This would be much easier using something like jQuery. – Dutchie432 Aug 5 '11 at 17:28
I added how I initialized the XML – Basic Intent Aug 5 '11 at 17:33
feedback

2 Answers

Am I correct that you have two loops one inside another and in both of them you use "i" variable as iterator? shouldn't you use "j" in the second loop?

link|improve this answer
Yes, but it works out perfectly because I reset i to 0, IF the ids match each other. When that if statement is branched into, the outer for loop does not need to execute again, and therefore I have the "break;" in there. – Basic Intent Aug 5 '11 at 17:34
is everything right with for (i; pCount; i = i + 1) { shouldn't be i < pCount ? – mkk Aug 5 '11 at 17:39
feedback

I think you want this in your for loop for (i; i < pCount; i = i + 1) { (note the i <) - otherwise it is just checking to see if pCount is defined and will run indefinitely. I suspect it is erroring when i gets bigger than the number of elements you have in eProject.phot, at which point eProject.photo will be undefined.

link|improve this answer
That change did help get rid of the error in firefox, chrome & safari, thank you. Sadly now I'm having issues in IE with the images being put into the src attribute. – Basic Intent Aug 5 '11 at 17:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.