Let's say I have labels and I attach two click events to it:
$('#l1').bind('click',function(){
alert('label clicked');
}
$('#l2').bind('click',function(){
alert('label2 clicked');
}
$('#l3').bind('click',function(){
alert('label3 clicked');
}
$('label').bind('click',function(){
if($(this).hasClass('disabled')
return false
}
<label id='l1'>hi</label>
<label id='l2' class="disabled">bye</label>
<label id='l3'>hi</label>
Now I don't want the alert to be displayed when the label that has class disabled is clicked.
Is it possible to do that ?
Note : alert is just a dummy thing.. I am performing a set of actions instead of that.. each different on basis of the actual label