Result jQuery$(document).ready(function() { //ホバーイベント発火 $(".tip_trigger").hover(function(){ //class="tip_trigger"内からclass="tip"を探す tip = $(this).find('.tip'); tip.show(); //表示 }, function() { tip.hide(); //非表示 //ここからマウスムーブイベント }).mousemove(function(e) { var mousex = e.pageX + 20; //位置を取得 var mousey = e.pageY + 20; //同上 var tipWidth = tip.width(); //幅を取得 var tipHeight = tip.height(); //高さを取得 var ti