JSFiddle - React, Tailwind, and code Playground

by osman rahimi

HTML

<tr >
    <td class='clickableRow' data-url="http://tbc.designcrown.co.uk/go/siteground">Sample</td>
</tr>

JavaScript

jQuery(document).ready(function($) {
    alert();
  $(".clickableRow").click(function() {
      alert();
        window.document.location = $(this).data('url');
      
     
  });
});