Does anybody have any experience with the Raphael.js SVG library?
I\'m using Raphael.js to create an SVG map (for use on smartphones) but I\'m having trouble opening the
I also found that if you remove the inline styles after rendering the path with raphael.
$('#somediv path').removeAttr('fill').removeAttr('stroke');
then you can style them how ever you want using css
#somediv path { fill: white; } #somediv:hover path { fill: blue; }