Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prompt User before browser close?

We have an administrative portal that our teachers constantly forget to download their latest PDF instructions before logging out and/or closing the browser window. I have looked around but can't find what I'm looking for.

I want to accomplish the following goals:

Goal 1

Before a user can close the browser window, they are prompted "Did you remember to download your form?" with two options, yes/no. If yes, close, if no, return to page.

Goal 2

Before a user can click the 'logout' button, they are prompted with the same as above.

My first pass at the very basic code (which does not work for browser close) is:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<script type="text/javascript">
function init() {
    if (window.addEventListener) {
        window.addEventListener("beforeunload", unloadMess, false);
    } else if (window.onbeforeunload) {
        window.onbeforeunload = unloadMess;
    };
}

function unloadMess() {
    var User_Message = "[Your user message here]"
    return User_Message;
}
</script>
</head>

<body onload="init();">
     hello this is my site
</body>
</html>

EDIT - NEW ISSUES

The solution provided below works but also has its own issues:

When user clicks the link to actually download the forms, the page thinks they are trying to leave and in turn present an error message to them! Also - I would like for one event or another to occur but not necessarily both. I.e. they hit 'logout' button and they are presented with the OnClick event, THEN the browser prompt. Any ideas?

like image 888
JM4 Avatar asked May 27 '10 16:05

JM4


People also ask

How to handle browser close event in JavaScript?

A tab or window closing in a browser can be detected by using the beforeunload event. This can be used to alert the user in case some data is unsaved on the page, or the user has mistakenly navigated away from the current page by closing the tab or the browser.

How to detect browser close event in jQuery or JavaScript?

You can use : $(window). unload(function() { //do something }); Unload() is deprecated in jQuery version 1.8, so if you use jQuery > 1.8 you can use even beforeunload instead.

How can I tell if my browser window is closed?

To check if an opened browser window is closed, you can use the closed property in referenced window object in JavaScript. The property returns a boolean true if the window is closed and false if the window is in the opened state.


3 Answers

Update 2017

All modern browsers do not support custom messages any longer.

window.onbeforeunload = function(evt) {
   return true;
}

This one for closing the tab:

window.onbeforeunload = function(evt) {
    var message = 'Did you remember to download your form?';
    if (typeof evt == 'undefined') {
        evt = window.event;
    }
    if (evt) {
        evt.returnValue = message;
    }

    return message;
}

and use onClick event for logout button:

onClick="return confirm('Did you remember to download your form?');"
like image 193
Mohit Jain Avatar answered Oct 29 '22 00:10

Mohit Jain


I think that this may be part of your problem:

else if(window.onbeforeunload) {
  window.onbeforeunload = unloadMess;
};

That test in the "if" statement will only be true if there's already a handler function. That test doesn't mean, "does the window object have an 'onbeforeunload' property?". It means, "is the 'onbeforeunload' property of the window currently not null?".

I think it'd be safe to just set "onbeforeunload" directly, for any browser.

like image 25
Pointy Avatar answered Oct 29 '22 01:10

Pointy


You cannot alert or things like that in onbeforeunload, you cannot simply return false to make the user not leave the page, as with other events like onclick. This would allow a site to make it impossible to leave it.

You can however just return a string, the browser then shows a confirm dialog including your string asking the user whether they really want to leave.

like image 38
Marian Avatar answered Oct 29 '22 00:10

Marian