how to get this id jquery code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: how can ic get the id of div jq
$(document).ready(function() {
console.log($('#test').attr('id'));
});
$(this).attr('id')
$(document).ready(function() {
console.log($('#test').attr('id'));
});