access data-id jquery code example
Example 1: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 2: get id by this jquery
alert($(this).attr('id'))
Example 3: jquery get data-id
const dataId = $('#elementId').attr("data-id");