JSFiddle - React, Tailwind, and code Playground

by kman007_us

HTML

<table>
<tr>
  <thead>
  <th>
  <div id="foo">
      <a href="#">@title</a><br>
   </div>
    </th>
  </thead>
</tr>
</table>

CoffeeScript

populateAnalyst = (shipFilterId, analyst) ->
  cb         = checkbox analyst
  shipFilter = $('#' + shipFilterId)
  shipFilter.append(cb)

checkbox = (value) ->
  '<label><input type="checkbox" value="' + value + '">' + value + '</label><br>'
  
populateAnalyst 'foo', 'kevin'  
populateAnalyst 'foo', 'joe'  
populateAnalyst 'foo', 'bill'
populateAnalyst 'foo', 'james' 
populateAnalyst 'foo', 'aaaaa'
populateAnalyst 'foo', 'bbbbb'