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