Just a word of warning to others, the following syntax
  <div id="foo"><svg ...
along with javascript calls
  var container = document.getElementById(divId);
  var svg = container.getElementsByTagName("svg")[0];
worked in Firefox 2 (and IE as well with ASV plugin).

However in Firefox 3, the following is necessary (but fails in FF2)
  var container = document.getElementById(divId);
  var svg = container.getElementsByTagName("svg:svg")[0];

Hope this helps others if suddenly your pages stop working as mine did.

Larry


[ sorry if this is a dual post; not sure if posts via my email is
working or not ]


------------------------------------

-----
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/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/svg-developers/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> 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