$(document).ready(function() { // Tooltips for Flot Charts if ($('.flot-chart')[0]) { $('.flot-chart').bind('plothover', function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(2), y = item.datapoint[1].toFixed(2); $('.flot-tooltip').html(item.series.label + ' of ' + x + ' = ' + y).css({top: item.pageY+5, left: item.pageX+5}).show(); } else { $('.flot-tooltip').hide(); } }); $('
').appendTo('body'); } });