get element id from jquery object code example
Example 1: get the id of a div in jquery
var rid = $(this).attr('id'); //for dynamically created elements
Example 2: jquery get id
var myId = $("#test").prop("id");
var rid = $(this).attr('id'); //for dynamically created elements
var myId = $("#test").prop("id");