[svg-developers] Re: onmouseover effect

2013-04-12 Thread Robert Longson
https://jwatt.org/svg/authoring/ is a good read for such things. In it it says... in ASV it is possible to write code like this: evt.getTarget().getOwnerDocument().getDocumentElement(); when the DOM and SVG specifications actually define properties, not methods, so the correct way to write

[svg-developers] Re: onmouseover effect

2013-04-12 Thread PETER
Robert Thank you for your prompt reply Looked at the page suggested - found relevant part. Made changes suggested In http://sst-svg.co.uk/toyellow3.svg Not only does it not work in Firefox, it doesn't work in IE with Adobe SVGview.exe I must be exceptionally dim today - what did I do wrong

RE: [svg-developers] Re: onmouseover effect

2013-04-12 Thread David Dailey
@yahoogroups.com] On Behalf Of PETER Sent: Friday, April 12, 2013 4:40 AM To: svg-developers@yahoogroups.com Subject: [svg-developers] Re: onmouseover effect Robert Thank you for your prompt reply Looked at the page suggested - found relevant part. Made changes suggested In http://sst

[svg-developers] Re: onmouseover effect

2013-04-12 Thread t...@ymail.com
--- In svg-developers@yahoogroups.com, PETER nospam@... wrote: I want them to change colour 'onmouseover'. This is a classic case for CSS. style type=text/css path:hover { stroke:yellow; } /style will do the job. It looks like this: http://jsfiddle.net/bvEDw/show/

[svg-developers] Re: onmouseover effect

2013-04-12 Thread PETER
: Friday, April 12, 2013 4:40 AM To: svg-developers@yahoogroups.com Subject: [svg-developers] Re: onmouseover effect Robert Thank you for your prompt reply Looked at the page suggested - found relevant part. Made changes suggested In http://sst-svg.co.uk/toyellow3.svg