JSFiddle - React, Tailwind, and code Playground

by fabiosm

HTML

<span id="message"></span>

JavaScript

window.addEventListener("focus", function(event) { document.getElementById('message').innerHTML = "window has focus"; }, false);
window.addEventListener("blur", function(event) { document.getElementById('message').innerHTML = "window lost focus"; }, false);