When working with SVG elements (shapes), I often encounter situations where mouse clicks need to pass through transparent areas or where there is no actual shape present.
To address this issue, I have utilized the css property pointer-events:none on the root SVG tag. This solution works well in most browsers, including IE and Mozilla.
Unfortunately, Safari does not seem to respond to this css property. You can test this by checking out the following fiddle:
'http://jsfiddle.net/AkashSaikia/52aWw/2/'
Does anyone have any insights on this issue? Is there a workaround that can be implemented?