I have one html div on my jsp page, on that i have put one anchor tag, please find code below for that,
Try this
$('.expandable-panel-heading:not(#ancherComplaint)').click(function () { alert('123'); }); $('#ancherComplaint').click(function (event) { alert($(this).attr("id")); event.stopPropagation() })
DEMO