JSFiddle - React, Tailwind, and code Playground

by jasper

JavaScript

var windowObjectReference = window.open('http://www.google.com/');

windowObjectReference.onunload = function(){
    alert('reload');
    location.reload();
};