- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
$("li").bind("mousemove", function(event) {
$(this).find("div.tooltip").css({
top: event.pageY + 5 + "px",
left: event.pageX + 5 + "px"
}).show();
}).bind("mouseout", function() {
$("div.tooltip").hide();
});
Комментарии (0) RSS
Добавить комментарий