I'm using d3 to show some link analysis type stuff (nodes and edges) on top of a map. This means the svg overlay blocks all the mouse events (click, pan, zoom etc) for the map <div> underneath the svg.
I re-created a very simple jsfiddle to re-create my problem where the <button> represents my map:
http://jsfiddle.net/H469P/I've tried a few solutions I've found across the web which have not helped unfortunately:
1.) The css tag "pointer-events: none" works great in Firefox, but it doesn't work for IE9 which is a requirement for me.
2.) The document.elementFromPoint(x, y) is an interesting API, but I'm not getting back the overlayed html element back in the data result.
Thanks in advance for your help. I appreciate it.