Hi, i have a little problem with the hover funtion with mousemove. But what is wrong?
working example -> http://www.jsfiddle.net/V9Euk/306/
$('.tip').live('hover', function(e)
{
if (e.type == 'mouseover')
{
$('#'+this.id+' .tooltip').show();
}
if (e.type == 'mousemove')
{
alert('move');
$('#'+this.id+' .tooltip').css({ left: e.pageX + 20, top: e.pageY + 20});
}
if (e.type == 'mouseout')
{
$('.tooltip').hide();
}
});
Thanks in advance! Peter