So I need different code for FF as compared to IE and Opera. Damb, thats a shame.
Aaron ----- Original Message ----- From: Martin Honnen To: [email protected] Sent: Saturday, January 27, 2007 2:00 PM Subject: [svg-developers] Re: Firefox problems --- In [email protected], "Aaron Gray" <[EMAIL PROTECTED]> wrote: > http://www.aarongray.org/Examples/SVG/ScriptedCircle.svg > > FF does not display a circle, IE7 and Opera do. > > It must be something pritty basic but I cannot see it :( Use namespace aware methods, SVG elements are in the namespace http://www.w3.org/2000/svg so you need to do e.g. var circle = document.createElementNS('http://www.w3.org/2000/svg', 'circle'); to create an element with local name 'circle' in the SVG namespace. ------------------------------------------------------------------------------ No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.410 / Virus Database: 268.17.12/653 - Release Date: 26/01/2007 [Non-text portions of this message have been removed] ----- 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/

