--- In svg-developers@yahoogroups.com, "Richard D. Spencer"
<[EMAIL PROTECTED]> wrote:
> I'm trying to get my svg project working in FireFox.
> 
> 
> 1.  Using
> 
>  libUrl.getURL(sFilePath, function(resp){code...} and
>  var oSvgDocFrag = libXml.parseXML(resp.responseText);
>  var oDocFrag = libXml.importNode(oSvgDocFrag.firstChild, true);
>  
> from "JavaScript O Lait" library (great semi-OOP).
> 
> resp.responseText is the same (and correct)in both IE+Adobe6 and 
> FireFox

How does that responseText look then? Make sure you have your SVG
elements in the proper namespace e.g.
  <svg xmlns="http://www.w3.org/2000/svg";></svg>
or
  <svg:svg xmlns:svg="http://www.w3.org/2000/svg";></svg:svg>
otherwise Mozilla can't recognize them during parsing as SVG elements.







-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to