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

  • SEARCH
  • Home
  • 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

Just because software is automated doesn't mean it will abide by your robots.txt. What
I couldn't find anything on this, but probably its just because I don't know
Is it just because of dynamic typing we don't require a concept of interfaces(like
Just because I don't know exactly where to look this up in my c++
I'm pretty much a total beginner to Spring so don't assume that just because
I'm used to debugging JavaScript in Chrome or Firefox just because their built in
I just found out because someone had a ' in their last name and
I've started using Coda because I just got a new Mac, and I want
I'm sorry if my question is silly because I just want to ask what
This is not really a question because I just solved the problem, but I

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.