Я работаю над всплывающей подсказкой с Jquery, но она не работает.Не могли бы вы мне помочь?Я не понимаю, почему это не работает хорошо ...
Спасибо !!
.tooltip{
padding:5px 10px;
background-color:#e5f4fe;
border:#5a5959 1px solid;
position:absolute;
z-index:9999;
color:#0c0c0c;
font-size:0.688em;
min-width:100px;
min-height:50px;
}
.tipBody {
background-color:#e5f4fe;
padding:2px;
}
HTML:
<a rel="tooltip" title="Print Results" class="printbtn" href="#">Print results</a>
JQUERY:
$(document).ready(function() {
//Select all anchor tag with rel set to tooltip
$('a[rel=tooltip]').mouseover(function(e) {
//Grab the title attribute's value and assign it to a variable
var tip = $(this).attr('title');
//Remove the title attribute's to avoid the native tooltip from the browser
$(this).attr('title','');
//Append the tooltip template and its value
$(this).append('<div class="tooltip"><div class="tipBody">' + tip + '</div></div>');
//Show the tooltip with faceIn effect
$('.tooltip').fadeIn('500');
$('.tooltip').fadeTo('10',0.9);
}).mousemove(function(e) {
//Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
$('.tooltip').css('top', e.pageY + 10 );
$('.tooltip').css('left', e.pageX + 20 );
}).mouseout(function() {
//Put back the title attribute's value
$(this).attr('title',$('.tipBody').html());
//Remove the appended tooltip template
$(this).children('div.tooltip').remove();
});
});