JSFiddle - React, Tailwind, and code Playground
by darkajax
HTML
<span id="didYouMean">
<select id="spellingSuggestions">
<option class="0" value="helo">helo</option>
<option class="1" value="he">he</option>
<option class="2" value="lo">lo</option>
<option class="3" value="he-lo">he-lo</option>
<option class="4" value="hello">hello</option>
<option class="5" value="helot">helot</option>
<option class="6" value="help">help</option>
</select>
<span class="correctWord">World!</span>
</span>
JavaScript
$('#spellingSuggestions').on('change', function(){
alert("hello");
});