JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://ngiriraj.com/pages/htmltable_export/tableExport.js"></script>
<script src="http://ngiriraj.com/pages/htmltable_export/jquery.base64.js"></script>
<script src="http://ngiriraj.com/pages/htmltable_export/html2canvas.js"></script>
<table id="customers" border="1" width="100%" >
	<thead>			
		<tr class='warning'>
			<th>Country</th>
			<th>Population</th>
			<th>Date</th>
			<th>%ge</th>
            <th>Photo</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>Chinna</td>
			<td>1,363,480,000</td>
			<td>March 24, 2014</td>
            <td>19.1</td>
             <td><img src="http://i.stack.imgur.com/CekuQ.jpg" width='60'  height='60'/></td>
		</tr>
		<tr>
			<td>India</td>
			<td>1,241,900,000</td>
			<td>March 24, 2014</td>
			<td>17.4</td>
           <td><img src="http://i.stack.imgur.com/CekuQ.jpg" width='60'  height='60'/></td>
		</tr>
		<tr>
			<td>United States</td>
			<td>317,746,000</td>
			<td>March 24, 2014</td>
			<td>4.44</td>
              <td><img src="http://i.stack.imgur.com/CekuQ.jpg" width='60'  height='60'/></td>
		</tr>
		<tr>
			<td>Indonesia</td>
			<td>249,866,000</td>
			<td>July 1, 2013</td>
			<td>3.49</td>
             <td><img src="http://i.stack.imgur.com/CekuQ.jpg" width='60'  height='60'/></td>
		</tr>
		<tr>
			<td>Brazil</td>
			<td>201,032,714</td>
			<td>July 1, 2013</td>
			<td>2.81</td>
            <td><img src="http://i.stack.imgur.com/CekuQ.jpg" width='60'  height='60'/></td>
		</tr>
	</tbody>
</table> 

<br/>
<br/>
<a href="#" onClick="$('#customers').tableExport({type:'excel',escape:'false'});">export</a>