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