jquery select options by data attribute code example
Example 1: jquery select by data attribute
$('div[data-key=value]');
Example 2: jquery get data attribute of selected option
$(this).find(':selected').data('id')
$('div[data-key=value]');
$(this).find(':selected').data('id')