Dear All,

I have the following problem. I have two nested ggroups and added an 
mouseover event to each. As the event (which calls DoB) bubbles up
also DoA is called. I would like cancel the bubbling up in DoB 
function. But this does not work.

<g  onmouseover=DoA() >
....
   <g onmouseover=DoB() >
     ...
   </g>
</g>

in my script 
function DoB(e) {
e.cancelBubble=true;  //  no error measage , BUT this does not work 
as 
expected
// event.cancelBubble = true;  ==> event is not defined
// window.event.cancelBubble = true ; ==> window.event has no 
properties .
}


It is possible at all to make this work on events which have NOT been 
defined by addEventListener in scripting ???

Thanks a lot for your help

Rolf










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

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