I really need to sign an ID to all my Raphael pathes. I used the solution posted in this answer how to access id attributes of any element in raphael and it works just find in Chrome and Firefox. It does not work at all in Internet Explorer. It even stop the pathes from loading. Does anyone have an idea how to fix this? I know IE is always a tough one, but I have to make it work on this browser.
for(var i = 0; i < statePathArr.length; i++) {
var path = mapPaper.path(statePathArr[i].coordinates).attr({
'fill' : '#EDECE7',
'stroke': '#666666'
});
path.node.id(statePathArr[i].name);