I'm working on an HTML display for some phylogenetic analysis. I create a div, and there's this lovely javascript package called jsPhyloSVG that draws me a nice tree in that div. That package uses raphael to do its drawing, but it doesn't return me the raphael paper
object. I'd like to make a few additions to this image using raphael, but I don't know how because I don't have a reference to that paper
object. I can access the svg that raphael generates, but is there some way to work backwards to find paper
?
If that doesn't work, I could always just add circle or path objects directly to the svg using jquery, right?