Hello,
I have a problem, I'm using .live()
to bind mouseenter
like this:
$('a').live('mouseenter',function(e){
alert($(this).attr('title'));
});
For all my links I get an alert for the first link's title, I think the problem is from $(this)
but I'm not sure, can anyone help?