I want to make a confirmation before user leaving the page. If he says ok then it would redirect to new page or cancel to leave. I tried to make it with onunload
<
Most of the solutions here did not work for me so I used the one found here
I also added a variable to allow the confirm box or not
window.hideWarning = false; window.addEventListener('beforeunload', (event) => { if (!hideWarning) { event.preventDefault(); event.returnValue = ''; } });