Tipsy won't recognize d3 elements in asp.net
问题 I am writing something ASP.NET and using d3 to graph a scatter plot, then tipsy to do mouseovers. This is inspired by this example. I have dumbed down my graph considerably so it is just this: http://jsfiddle.net/scottieb/D9Vjg/ But when I put that code in ASP.NET it won't work! If I put a button in and tie tipsy to that instead I have no issue generating the tooltip. $('button').tipsy({ html: false, live: true, fade: true, gravity: 'e', title: function () { return "test"; } }); For what it's