I created a mouseover
event handler like this:
$('.grpName_tooltip0, .grpName_tooltip1, .grpName_tooltip2').live('mouseover',function(){
var localGrpName=$(this).attr('class')=='grpName_tooltip0'?arrGrpNames[0]:$(this).attr('class')=='grpName_tooltip1'?arrGrpNames[1]:$(this).attr('class')=='grpName_tooltip2'?arrGrpNames[2]:'';
$('#GroupsDivTooltip').html(localGrpName);
$('.ttpGrp').css({'top':$(this).offset().top+27,'left':$(this).offset().left}).fadeIn();
}).live('mouseleave',function(){
$('#GroupsDivTooltip').html('');
$('.ttpGrp').fadeOut();
});
I want to do .die for particular .grpName_tooltip0
class name.
When I tried individually like below is not working...
$('.grpName_tooltip0').die('mouseover');
It is working for all mentioned... like below
$('.grpName_tooltip0, .grpName_tooltip1, .grpName_tooltip2').die('mouseover');
I just want to only for one.
Please suggest me.....