property previousSibling

(r/o) domNode previousSibling;

Typ

Zugriff

Contains the previous sibling for this node.
    var factory = shell.serviceManager.maxiXML.factory;
    var dom = factory.createDOMDocumentFromPath("c:\\document.xml", false);
    var last= dom.documentElement.lastChild;
    while(last.previousSibling)
    {
      var information = last.nodeValue;
      last = last.previousSibling;
    }