I'm trying to use Raphael JS, but jQuery selectors don't seem to work with Raphael JS in IE8.
In Chrome and Firefox this works:
var paper = ScaleRaphael("test", 500, 500);
var c = paper.circle(50, 50, 40);
c.node.setAttribute('class','bluecircle');
$('.bluecircle').attr({fill: 'blue'});
But in Internet Explorer (IE8, which uses VML instead of SVG) nothing is shown.
Basically what I'm trying to do is to give each object a class, so I can use Jquery selectors to manipulate all objects at once that have a certain class...
Does anybody know a way how to do this, that also works in IE ?