return id value jquery code example
Example 1: get the id of a div in jquery
var rid = $(this).attr('id'); //for dynamically created elements
Example 2: get id by this jquery
alert($(this).attr('id'))
var rid = $(this).attr('id'); //for dynamically created elements
alert($(this).attr('id'))