select elements with data attribute code example
Example 1: select by data attribute
$('*[data-id="your_id"]');
Example 2: js select by data attribute
$("[attribute=value]")
$('*[data-id="your_id"]');
$("[attribute=value]")