JSFiddle - React, Tailwind, and code Playground

by Mike McCaughan

JavaScript

const popup = window.open("https://google.com", "google", "height=400,width=400");
popup.addEventListener("load", () => {
  alert("loaded")
});