Re: [svg-developers] HTML-SVG in Firefox

2007-03-30 Thread Olaf Schnabel
Hi Stephen and Martin both approaches worked for me. Thanks for your help. Regards Olaf Martin Honnen wrote: --- In svg-developers@yahoogroups.com mailto:svg-developers%40yahoogroups.com, Olaf Schnabel [EMAIL PROTECTED] wrote: I have a problem with the HTML-to-SVG communication in

[svg-developers] HTML-SVG in Firefox

2007-03-29 Thread Olaf Schnabel
Hi developers I have a problem with the HTML-to-SVG communication in Firefox. I made a simple example: html_svg.html: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleFrom HTML to SVG/title script type=text/javascript!-- function init() { var svgdoc =

RE: [svg-developers] HTML-SVG in Firefox

2007-03-29 Thread Chris Peto
To: svg-developers Subject: [svg-developers] HTML-SVG in Firefox Hi developers I have a problem with the HTML-to-SVG communication in Firefox. I made a simple example: html_svg.html: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleFrom HTML to SVG/title script type

Re: [svg-developers] HTML-SVG in Firefox

2007-03-29 Thread Olaf Schnabel
To: svg-developers Subject: [svg-developers] HTML-SVG in Firefox Hi developers I have a problem with the HTML-to-SVG communication in Firefox. I made a simple example: html_svg.html: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleFrom HTML to SVG/title

Re: [svg-developers] HTML-SVG in Firefox

2007-03-29 Thread Stephen Quintero
This works for me: function init(evt) { if ( window.svgDocument == null ) svgDocument = evt.target.ownerDocument; var SVGRoot = svgDocument.documentElement; } Stephen On 29 Mar 2007 05:47:17 -0700, Olaf Schnabel [EMAIL