Thomas Mell: XML-File laden

Hi Leute,
wie kann ich im NN6 mit Javascript XML-Files laden. Im IE ist es wie immer kein Problem.

Grüße
Thomas

  1. Hallo Thomas,

    wie kann ich im NN6 mit Javascript XML-Files laden. I

    <html>
    <body>
    <h1>document.load() test</h1>
    <script>
    var xmlDoc = document.implementation.createDocument("", "test", null);

    function documentLoaded(e) {
      alert(xmlDoc.getElementById("id1").firstChild.nodeValue);
    }

    xmlDoc.addEventListener("load", documentLoaded, false);

    xmlDoc.load("ns6-xml-test.xml");
    </script>
    </body>
    </html>
    -----
    ns6-xml-test.xml:
    ----
    <?xml version="1.0"?>
    <!DOCTYPE doc [
    <!ATTLIST p id ID #IMPLIED>
    ]>
    <doc>
    <p id="id1">Text from sample XML document.</p>
    </doc>

    grüße
    thomas