JSFiddle - React, Tailwind, and code Playground

HTML

<br><br>

<select>
  <option class="lorem">1</option>
  <option class="lorem">2</option>
</select>

JavaScript

jQuery( document ).ready(function() {
    jQuery('.lorem').click(function() {
			 alert('ipsum');
    });
});