jquery get id value of element code example
Example 1: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 2: jquery get id
var myId = $("#test").prop("id");
var myId = $(this).attr('id');
alert( myId );
var myId = $("#test").prop("id");