Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3343102
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:54:57+00:00 2026-05-18T00:54:57+00:00

Just because you don’t see use for a feature doesn’t mean it isn’t useful.

  • 0

Just because you don’t see use for a feature doesn’t mean it isn’t useful.

The Stack Exchange network, GMail, Grooveshark, Yahoo! Mail, and Hotmail use the onbeforeunload prompt to prevent/warn users that they are leaving a page after they have begun editing something. Oh yah, nearly every single desktop program that accepts saveable user-input data utilizes this prompt-user-before-leaving UX pattern.


I have a function which behaves similarly to this one:

window.onbeforeunload = function(){
    // only prompt if the flag has been set... 
    if(promptBeforeLeaving === true){
        return "Are you sure you want to leave this page?";
    }
}

When a user attempts navigates away from the page the browser presents them with the option to leave or stay on the page. If the user selects the “Leave this page option” and then they quickly click on a link again before the page unloads completely the dialog fires again.

Are there any foolproof solutions to this problem?


Note: The following NOT the solution:

var alreadyPrompted = false;
window.onbeforeunload = function(){
    // only prompt if the flag has been set... 
    if(promptBeforeLeaving === true && alreadyPrompted === false){
        alreadyPrompted = true;
        return "Are you sure you want to leave this page?";
    }
}

because the user might select the “Stay on the page” option which would cause future onbeforeunloads to stop working.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T00:54:57+00:00Added an answer on May 18, 2026 at 12:54 am

    I think you could accomplish this with a timer (setInterval) that starts in the onbeforeunload callback. Javascript execution will be paused while the confirm dialog is up, then if the user cancels out the timed function could reset the alreadyPrompted variable back to false, and clear the interval.

    Just an idea.

    Ok I did a quick test based on your comment.

    <span id="counter">0</span>
    window.onbeforeunload = function () {
       setInterval(function () { $('#counter').html(++counter); }, 1);
       return "are you sure?";
    }
    window.onunload = function () { alert($('#counter').html()) };
    

    In between the two callbacks #counter never got higher than 2 (ms). It seems like using these two callbacks in conjunction gives you what you need.

    EDIT – answer to comment:

    Close. This is what i was thinking

    var promptBeforeLeaving = true,
        alreadPrompted = false,
        timeoutID = 0,
        reset = function () {
            alreadPrompted = false;
            timeoutID = 0;
        };
    
    window.onbeforeunload = function () {
        if (promptBeforeLeaving && !alreadPrompted) {
            alreadPrompted = true;
            timeoutID = setTimeout(reset, 100);
            return "Changes have been made to this page.";
        }
    };
    
    window.onunload = function () {
        clearTimeout(timeoutID);
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My motto for Java is just because Java has static blocks, it doesn't mean
I just installed SQL Server Express 2008 because of intellisense feature. It worked at
I've just installed the OpenID Authentication plugin because I'd like to use it for
When the command prompt opens and then just closes really fast (because there isn't
Just because I'm curious--is there any C analog to the functionality of the STL
I'm writing in second-person just because its easy, for you. You are working with
Just about every piece of example code everywhere omits error handling (because it confuses
I just lost 50% of my answer on a test because I wrote the
Just like Carl's question over here I would like to ask you (because I
I just migrated to Windows Ultimate 64 SP1, because my system's hard drive crashed.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.