JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

HTML

<table border="1" width="400px">
<tr>
<td width="400px" class="emailLinkTD">
<a id="emailLink" href="mailto:[email protected]">Email Me</a>
</td>
</tr>
</table>

JavaScript

$('.emailLinkTD').click(function() {
alert('clicked')l
});