I want to use greensock's js animation platform to tween the radius of an svg circle, but it doesn't seem to be working, and I didn't see anything in the documentation about tweening attributes, only css properties. Is this possible? I essentially have this:
<circle r="17.451467196282987" data-rad="17.451467196282987"></circle>
and am trying to do this:
TweenLite.to($('circle'), .5, {r:25});
I tried doing this with jquery and it didn't work either, but I'd accept either method.