<머리>
<스타일>
li{list-style:none;float:left;margin-right:10px;border:1px solid #AAAAAA}
#tooltip{position:absolute;}
<스크립트>
$(function(){
var x = 10;
var y = 20;
$("a.tooltip").hover(function(){
var title = this .title;
$("a.tooltip").attr("newTitle",this.title)
this.title = ''
var $div = $("
" this.newTitle "
");
$("body"). 추가($div);
$div.css({"position":"absolute","Background":"silver"}).show("fast")
},function(){
this.title = this.newTitle;
$("#newTip").remove()
}).mousemove(function(e){
var $div = $( "#newTip").css({"left":(e.pageX x) 'px',"top":(e.pageY y) 'px'}).show("fast")
} );
})
<본문>