event
Full Screen
Event bubbling & capturing demo
- SVG elements are not nested – they don’t bubble to each other. Topmost element is the target.
- Blue SVG rect captures the event with d3.event.stopPropagation();
- Nested DIV elements bubble to each other up the DOM tree.
- Non-nested DIV elements don’t bubble to each other.