Could you take a look at this JsFiddle and tell me how I can center the tooltip inside an SVG? I already see the same question on this post , but to be honest, it was too confusing for me!
Here is the code I have:
<div class="container"> <div class="well"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="400px" height="400px" viewBox="0 0 400 400" enable-background="new 0 0 400 400" xml:space="preserve"> <ellipse class="firststar" cx="200" cy="200" rx="150" ry="150"/> </svg> </div> </div>
and jquery code:
$('.firststar').tooltip({title:'Test SVG Centering', container:'.well', placement: 'top'});
source share