Galera montei um sisteminha de Tooltip bem simples usando jQuery e css.
They are presenting the standard Tooltip when you hover over it. This happens only in IE, Safari and old Chrome.
Cananyonehelpme?Followthecodebelow.
$(document).ready(function () {
$('.masterTooltip').hover(function () {
var title = $(this).attr('title');
$(this).data('tipText', title).removeAttr('title');
$('<p class="tooltip"></p>')
.html(title)
.appendTo('body')
.fadeIn('fast');
}, function () {
$(this).attr('title', $(this).data('tipText'));
$('.tooltip').remove();
}).mousemove(function (e) {
// Get X Y coordinates
var mousex = e.pageX + 20;
var mousey = e.pageY + -25;
$('.tooltip').css({top: mousey, left: mousex});
});
});
.tooltip {
display:none;
position:absolute;
border:1px solid #616161;
background-color:#323232;
border-radius: 4px;
padding:10px;
color:#FFFFFF;
}
.tooltip::after{
position: absolute;
content: '';
left: -20px;
top: 3px;
border: 10px solid transparent;
border-right-color: #323232;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script><pclass="masterTooltip" title="bla,bla,bla,bla">qeqweqweqweqqw</td>