Forum Moderators: open
So, the problem is, I have an SVG circle:
<circle cx="799" cy="184" r="200" fill="#0066ee" id="cir" />
And I want to make it bigger, via this line
document.getElementById('cir').r=500;
But although the r property seems to be defined ([object SVGAnimatedLength], but it's blank), changing the value like this seems to have no effect on the display. I'm testing with a new version of Opera if that helps...