I am currently working with svg element of JavaScript.And I am new to it
My question is that I have an svg element in which I multiple svg:g element.and in my svg:g I have various other svg elements.
<svg>
<g class "my-class">
<g class "c1">
<text style="font-size: 9" x="0" y="-4"> john </text>
<text style="font-size: 9" x="70" y="-4"> 13 </text>
</g>
<g class "c2">
<text style="font-size: 9" x="0" y="-4"> john </text>
<text style="font-size: 9" x="70" y="-4"> 13 </text>
</g>
<g class "c3">
<text style="font-size: 9" x="0" y="-4"> john </text>
<text style="font-size: 9" x="70" y="-4"> 13 </text>
</g>
</g>
</svg>
"g" are dynamically appending in my
g "my_class"
Now I want to set my svg width equal to the width of width.
var svgWidth = $('.my-class').width()
alert(svgWidth);
But its giving me zero.How ever I can see it on my browser in a yellow tool tip box.
when I select this line.
Can any one kindly guide me am I doing this right or how can I achieve this Thanks