I have one html div on my jsp page, on that i have put one anchor tag, please find code below for that,
I would have used stopPropagation like this:
stopPropagation
$('.expandable-panel-heading:not(#ancherComplaint)').click(function () { alert('123'); }); $('#ancherComplaint').on('click',function(e){ e.stopPropagation(); alert('hiiiiiiiiii'); });