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 this code is: evt.target.ownerDocument.documentElement; You'll find if you search in your example for getTarget() and replace it by target as suggested there, your mouseover works. Robert ------------------------------------ ----- 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: [email protected] [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/

