Response title
This is preview!
Can you please take a look at This Demo and let me know why the tooltip is not showing on the path on mouse over using jquery Ui and Raphael.js?
<div id="canvasDiv"></div>
$(function () {
var paper = Raphael(0, 0, 500, 500);
var d = "M90,90l-80,-20L50,5L90,90";
var tri = paper.path(d).attr({
"fill": "yellow",
"stroke-width": 5,
"stroke-linejoin": "round",
"title": "Show Me The Tooltip!"
});
$(tri).tooltip();
});
© 2013 jQuery Foundation
Sponsored by and others.