Clicking on elements in jQuery causes bubble up to body. If we have a click handler binded to body that shows an alert, then clicking on any element will bubble up to body a
You can check what was clicked with event.target:
$(something).click(function(e){ alert(e.target) })