JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/le-frog/jquery-ui.css">
<link rel="stylesheet" href="http://cdn.datatables.net/plug-ins/380cb78f450/integration/jqueryui/dataTables.jqueryui.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://cdn.datatables.net/1.10.3/js/jquery.dataTables.min.js"></script>
<div id="tabs">
		<div id="tabs-1">       
       <table id="example" class="display" cellspacing="0" width="100%">
         <thead>
           <tr><th>Name</th><th>Position</th><th>Office</th><th>Salary</th></tr>
        </thead>
    <tbody>
<tr><td>Tiger Nixon</td><td>System Architect</td><td>Edinburgh</td><td>324800</td></tr>
<tr><td>Garrett Winters</td><td>Accountant</td><td>Tokyo</td><td>170750</td></tr>
<tr><td>Ashton Cox</td><td>JuniorAuthor</td><td>San Francisco</td><td>86000</td></tr>
<tr><td>Cedric Kelly</td><td>Senior Developer</td><td>Edinburgh</td><td>433060</td></tr>
<tr><td>Airi Satou</td><td>Accountant</td><td>Tokyo</td><td>162700</td></tr>
<tr><td>Brie Williamson</td><td>Integration Speci</td><td>New York</td><td>370000</td></tr>
</tbody></table>
</div>
	<div id="tabs-2">Phasellus  dictum bibendum.</div>
	<div id="tabs-3">Nam dui erat, auctor aaugue.</div>
</div>

JavaScript

// directly taken from the example : language.thousands

$('#example').dataTable( {

  "language": {
    "thousands": "'"
  }
} );