I'm trying to use the contents of a div as a tooltip. My javascript code is as follows:
$(document).ready(function() {
$('.flexi').tooltip({
effect: 'slide',
tooltipSourceID:'#qwerty'
});
});
and my html looks like this:
<div style="position:relative;">
<p><span class="flexi">Mouse Over</span></p>
<div id="qwerty" class="tooltip flexidef">
<p>This is the custom tooltip. This is the custom tooltip.</p>
</div>
</div>
but nothing appears when I hover over 'Mouse Over'. I've based the above code on Example 3 from http://swip.codylindley.com/tooltipDemo.html.
Any help appreciated.