how to get data attribute value in selected option in jquery code example
Example 1: jquery get option data attribute
$(this).find(':selected').data('id');
Example 2: jquery get data attribute of selected option
$(this).find(':selected').data('id')