qTip2 - My test case
by j08691
HTML
<script src="http://craigsworks.com/projects/qtip2/packages/nightly/jquery.qtip.js"></script>
<link rel="stylesheet" href="http://craigsworks.com/projects/qtip2/packages/nightly/jquery.qtip.css">
<a class="trigger" href="#" title="Tooltip">Hover over me to see the tooltip follow the mouse</a>
JavaScript
$('.trigger').qtip({
content: {
text: 'I follow the mouse whilst I\'m visible. Weeeeee!'
},
position: {
target: 'mouse',
adjust: {
mouse: true // Can be omitted (e.g. default behaviour)
}
}
});