get div id jquery code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 3: get id by this jquery
alert($(this).attr('id'))
Example 4: how can ic get the id of div jq
$(document).ready(function() {
console.log($('#test').attr('id'));
});