I am working with d3.js to render my graphs. For some reason, I am not a huge fan of the svg title because of the delay it carries and the inability to style them. Please correct me if I am wrong. I recently came across tipsy , but it is not cross-browser compatible.
For example, consider this . Tooltips work fine in Firefox and Chrome, but don't show up even in IE 9, and I'm not sure what is going on. Is there a cleaner cross-browser approach for tooltips compatible with d3.js other than using the svg title attribute?
EDIT : I'm looking for something that works with d3.js. For example, using tipsy, we do the following:
$("svg circle").tipsy({});
This works in Firefox and Chrome, but not in IE. A similar situation was observed when using the Twitter Bootstrap tooltip. Here's jsFiddle without adding a tooltip for quick testing.
source share