I'm fairly new both to using SVG graphics and using the jquery svg.
Is there something like a "local to global" method to get a position of something relative to the SVG instead of the group that it's in?
Suppose I have a bunch of circles and when I click on a circle I want the position of the circle. But the circle is inside a g, and that g has a transform applied to it. And I want a position I can use on something that's not in that group. If I just grab the cx and cy of the circle, that won't take into account the transform applied to the group.
So is there a way to grab what the cx and cy of the circle would be after the transform is applied?