JSFiddle - React, Tailwind, and code Playground

by learner001

HTML

<select id="countrycode">
<option value="">Pick one...</option>
<option value="test1">Test 1</option>
<option value="test2">Test 2</option>
<option value="test3">Test 3</option>
</select>

CSS

select{
  color: red;
}

CoffeeScript

$('#countrycode').on 'change', ->
	if $(this).val()
    $(this).css('color', 'black')
  else
     $(this).css('color', '#FFFFFF')