jquery get id from elements code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: jquery get id value
var myId = $(this).attr('id');
alert( myId );
$(this).attr('id')
var myId = $(this).attr('id');
alert( myId );