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