I have a webpage where there is SVG above IMG element that should draw shapes over it.
The drawing is executed correctly across browsers. But when it comes to receiving events, the IMG actually seems to block the event/receive it instead (it does not have any event attached by itself so it not being stopped explicitly).
Example:
http://jsfiddle.net/UvRVX/12/ (fixed markup, added circle)
FF, Chrome: "svg received mousedown" (correct)
Opera, IE9: -nothing- (incorrect)
When the image is hidden via CSS visibility or display: none, it starts to work, but this way of course cannot be used.
How to place SVG element above IMG element so it can receive events? (in Opera, IE9)
Thank you