Попробуйте:
$(function () {
$('#hover-img')
// show the coordinates box on mouseenter
.bind('mouseenter', function () {
$('#coordinates').show();
})
// hide it on mouseleave
.bind('mouseleave', function () {
$('#coordinates').hide();
})
// update text and position on mousemove
.bind('mousemove', function (evt) {
$('#coordinates').html(
(evt.pageX - this.offsetLeft) + '/' + (evt.pageY - this.offsetTop)
).css({
left: evt.pageX + 20,
top: evt.pageY + 20
})
});
});
Примечание : см. Демонстрационную версию " для используемых html-элементов.