Hi Fahri,

it looks like IE doesn't like your XML. Try creating a document from the 
string using

var doc = qx.xml.Document.fromString(myXml);

There's no error, but doc.parseError.reason says there's something wrong 
with the DTD. After removing the DTD, selecting the nodes worked.


Regards,
Daniel

fahri schrieb:
> I have this xml in a variable
> myXml...
> <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection
> 1.0//EN"
> "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd";>
> <node>
>   <interface name="org.freedesktop.DBus.Introspectable">
>     <method name="Introspect">
>       <arg name="xml_data" type="s" direction="out"/>
>     </method>
>   </interface>
>   <node name="log"/>
>   <node name="values"/>
> </node>
> 
> does not work in IE...
> 
>         var nodes = new qx.data.Array();                  
>         nodes.append(qx.xml.Element.selectNodes(myXml, "//node/node"));
> 
> In other browsers it works. How can it work in IE?
> 
> Thanks, Fahri


------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to