Делаю вручную tooltip, хотелось бы иметь возможность наводить на саму всплывающую подсказку мышь, чтобы она не убиралась. Вот мой код
$('.link-reply').mouseover(function () {
var tooltip = $(this).data('num');
var some_link_reply = $(this);
$.ajax({
type: 'GET',
dataType: 'json',
data: {
'tooltip': tooltip,
},
url: '/AjaxTooltip.json',
success: function (data) {
console.log(data);
parse_datetime(data, 0);
var tmpl = _.template(document.getElementById('template-tooltip').innerHTML);
var result = tmpl({data: data});
$('.dynamic1').append(result);
$('.tooltip').css({left: some_link_reply.offset().left + 15 , top: some_link_reply.offset().top + 15, opacity: 1});
}
});
});
$('.link-reply').mouseout(function () {
$('.tooltip').remove()
})