JSFiddle - React, Tailwind, and code Playground
by George Batt
HTML
<select name="/static/images/legends/default.png" class="legend-icon">
<option class="legend-icon" name="/static/images/legends/icon1.png">option1</option>
<option class="legend-icon" name="/static/images/legends/icon2.png">option2</option>
<option class="legend-icon" name="/static/images/legends/icon3.png">option3</option>
</select>
JavaScript
$('select').change(function(e) {
alert($(this).children(':selected').attr('name'));
});