jQuery Tooltip qTip2ΒΆ
reference:
$('.tooltip').qtip({
content: {
text: 'ciao!'
//text: $('.tooltip-content')
},
position: {
target: $('.qtip-target'),
//target: $('.tooltip')
viewport: $(window),
my: 'top right',
at: 'bottom left'
},
style: {
classes: 'qtip-rounded qtip-light qtip-shadow'
},
show: {
ready: true
}
,hide: {
//event: 'unfocus'
//inactive: 1000,
fixed: true,
delay: 300
}
});
<div class="tooltip"></div>
<div class="qtip-target"></div>