JSFiddle - React, Tailwind, and code Playground

by Curt

HTML

<input type="submit" onclick="PopupWindow();" value="submit" />

JavaScript

function PopupWindow() {
            testwindow = window.open("http://google.com", "Google", "menubar=0,addressbar=0, width=500, height=500");
            testwindow.focus();
        }