このページには次のdivがあります。
<div id="tip">
Tip text here...
</div>
そして次の1つ:
<div class="element">
Element text here...
</div>
また、次のjs-code:
$(document).ready(function() {
$('.element').hover(function() {
$('#tip').css('top', $('.element').position().top);
$('#tip').css('left', $('.element').position().left);
$('#tip').fadeIn();
}, function() {
$('#tip').fadeOut();
});
});
ページの左上隅にヒントが表示されます。要素と同じ位置にチップを表示するようにこのコードを修正するにはどうすればよいですか?(コード上でチップと要素を互いに近くに配置することはできません。)
助けてくれてありがとう!