I implemented pointer-events: nonein a Raphael element using jQuery as follows:
var raphaelElement = Raphael.ellipse(x,y,w,h);
$(raphaelElement.node).css({'pointer-events': 'none'});
This works fine, but of course in IE8, Raphael uses VML instead of SVG, and this solution fails.
Does anyone have any other solution, essentially, so that the Raphael element ignores events.
source
share