Подсказка (jQuery)Jquery

Программирование на jquery
Ответить
Anonymous
 Подсказка (jQuery)

Сообщение Anonymous »

Я работаю над подсказкой с jQuery, но он не работает. Не могли бы вы мне помочь? Я не понимаю, почему это не работает хорошо ... < /p>

Спасибо !! < /p>

.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;
}
< /code>

html: < /p>

Print results
< /code>

jQuery: < /p>

$(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('' + tip + '');

//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();

});

});


Подробнее здесь: https://stackoverflow.com/questions/662 ... tip-jquery
Ответить

Быстрый ответ

Изменение регистра текста: 
Смайлики
:) :( :oops: :roll: :wink: :muza: :clever: :sorry: :angel: :read: *x)
Ещё смайлики…
   
К этому ответу прикреплено по крайней мере одно вложение.

Если вы не хотите добавлять вложения, оставьте поля пустыми.

Максимально разрешённый размер вложения: 15 МБ.

Вернуться в «Jquery»