JSFiddle - React, Tailwind, and code Playground
by David Thomas
HTML
<a href="http://davidrhysthomas.co.uk/">Leave site</a>
JavaScript
function reallySure (event) {
var message = 'Are you sure about that?';
action = confirm(message) ? true : event.preventDefault();
}
function actionToFunction (event) {
switch (event.target.tagName.toLowerCase()) {
case 'a' :
reallySure(event);
break;
default:
break;
}
}
document.body.addEventListener('click', actionToFunction);