how to get the id in jquery code example
Example 1: get the id of a div in jquery
var rid = $(this).attr('id'); //for dynamically created elements
Example 2: how can ic get the id of div jq
$(document).ready(function() {
console.log($('#test').attr('id'));
});