JSFiddle - React, Tailwind, and code Playground

by jfriend00

HTML

<table>
    <tr onclick="popit('http://www.google.com')"><td>Whatever</td></tr>
</table>

JavaScript

function popit(url){
    newwindow = window.open(url, '', "status=yes, height=500; width=500; resizeable=no");
}