get id out of element 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
Example 3: jquery get id
var myId = $("#test").prop("id");
Example 4: get element by id in Jquery
$("#YourElementId").val();