select option data attribute jquery code example
Example 1: jquery get option data attribute
$(this).find(':selected').data('id');
Example 2: selected option attribute jquery
$('#location').find('option:selected').attr('myTag');
Example 3: jquery get data attribute of selected option
$(this).find(':selected').data('id')