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 am not exactly sure what you code is doing, but if you want to get a jQuery object out of a Raphael object then do this:
var $jQueryObject = $(raphaelObject.node);
From there you can use jQuery to add a class:
$jQueryObject.addClass('highlight');