Hello!

Is there a browser independant xml dom creation in qooxdoo? Something like:

proto.createXmlDom = function() {
   var xmlDom;
if (document.implementation && document.implementation.createDocument)
       return document.implementation.createDocument("", "", null);
   else if (window.ActiveXObject)
       return new ActiveXObject("Microsoft.XMLDOM");
   else {
       throw('This browser does not support xmldom.');
       return null;
   }
   return null;
};


Best Regards.

--
Mit freundlichen Grüßen
Dietrich Streifert
Visionet GmbH



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to