how to get id of clicked element in jquery code example
Example 1: how to get the id of button clicked in jquery
$("button").click(function() {
alert(this.id); // or alert($(this).attr('id'));
});
Example 2: get the id of a div in jquery
var rid = $(this).attr('id'); //for dynamically created elements