JSFiddle - React, Tailwind, and code Playground
by rotailed
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<table class="table table-bordered">
<thead>
<th>Firme</th>
<th>Matériel</th>
<th>Délégué</th>
<th></th>
</thead>
<tbody>
<tr>
<td>Inceptos scéléréo</td>
<td>Sagittis ut laçus venesatis gravida</td>
<td>N</td>
<td><button class="btnMail" data-firme="123" data-mail="N">Envoi</button></td>
</tr>
<tr>
<td>Netus nunc luctus</td>
<td>Rhoncus morbié nombre</td>
<td>Y</td>
<td><button class="btnMail" data-firme="123" data-mail="N">Envoi</button></td>
</tr>
</tbody>
</table>
JavaScript
$(document).ready(function() {
$( ".btnMail" ).click(function() {
alert();
}
});