jquery to get the id of an element on click code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: how to get the id of button clicked in jquery
$("button").click(function() {
alert(this.id); // or alert($(this).attr('id'));
});