Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.enter image description here

when I select this line.

Can any one kindly guide me am I doing this right or how can I achieve this Thanks

share|improve this question

2 Answers

up vote 7 down vote accepted

Try .getBoundingClientRect

$('.my-class')[0].getBoundingClientRect().width;

Demo http://jsfiddle.net/5DA45/

share|improve this answer
Thanks alot @Esailija.But I want to ask one thing that it gives me value of width which is equal to 10 + value of width in tooltip box.Any Idea why is it so – A_user Jul 28 '12 at 18:45

I'd recommend getBBox (which is part of SVG 1.1) over getBoundingClientRect:

$('.my-class')[0].getBBox().width;

Demo http://jsfiddle.net/TAck4/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.