Confirm the message before leaving the web browser (JS)

You want a confirmation window to appear before someone leaves my site. They have information that will be lost if they leave, and you do not want this right. Please be specific if I put the code like that, because I'm not the best of the coders ...

+5
source share
1 answer
window.onbeforeunload = function(){
    return "Are you sure you wanna leave my site?";
}
+7
source

All Articles