JSFiddle - React, Tailwind, and code Playground

by Amitabha Ghosh

JavaScript

window.onbeforeunload = function (e) {
e = e || window.event;

// For IE and Firefox prior to version 4
if (e) {
    e.returnValue = 'Sure?';
}

// For Safari
return 'Sure?';
};