jQuery Get the id of the element clicked jquery October 10, 2012 Pramod T P <script> $(“body”).click(function(event) { alert(event.target.id) }); </script>