select option in jquery data code example
Example 1: jquery select element with data
$('[data-attribute="value"]');
Example 2: select option value jquery
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});