I draw d3 graphical charts and tooltips attached to circles.
Tooltips work fine in Chrome / Safari, but in Firefox and IE, when you hover over a dot while the tooltip appears, it appears outside the graph / SVG element in the upper left corner of the screen (html element), and not near the point.
Here's how I attach the tooltip:
jQuery('g circle').tipsy({ gravity: 'w', html: true, title: function() { return this.textContent; } })
Any advice on what I am doing wrong will be greatly appreciated.
source share