jQuery mendapatkan atribut data opsi
$(this).find(':selected').data('id');
MatrixZA
$(this).find(':selected').data('id');
$('#country').on('change', function(){
let id = $(this).find(':selected').data('id');
console.log(id);
});
$('div[data-key=value]');
$(this).find(':selected').data('id')