.html()
a のコンテンツを取得してツールチップとして表示するために使用しspan tag
ていますが、span タグ内の html タグは、レンダリングせずにツールチップ内に直接表示されます。
<div>
<a href="#">Parent
<span>
<strong>It is a long established</strong> The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to usi<em>ng 'Content here, content here', m</em>aking it look like readable English. Many desktop publishing packages
</span>
</a>
</div>
JavaScript
$(this).hover(function(){
// Hover over code
var title = $(this).find('span').html();
if(title){
$('<p class="tooltip"></p>')
.text(title)
.appendTo('body')
.fadeIn('slow');
}
}, function() {
// Hover out code
$('.tooltip').remove();
}).mousemove(function(e) {
var mousex = e.pageX + 20; //Get X coordinates
var mousey = e.pageY + 10; //Get Y coordinates
$('.tooltip')
.css({ top: mousey, left: mousex })
});