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 8442211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:47:24+00:00 2026-06-10T08:47:24+00:00

I would like to access the event that caused a beforeunload event. Specifically, if

  • 0

I would like to access the event that caused a beforeunload event. Specifically, if I click on a link to another page, I would like to know what the link was in the beforeunload event handler.

In this way, I would be perform different actions in the beforeunload event handler according to what the URL was.

Eg ‘http:’ or ‘https:’ warn user about losing unsaved changes; ‘mailto:’ or ‘skype:’ don’t warn user because page is not actually going to be unloaded.

I am trying to build a good solution to a problem like this:
mailto link (in chrome) is triggering window.onbeforeunload – can i prevent this?

  • 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-06-10T08:47:25+00:00Added an answer on June 10, 2026 at 8:47 am

    I was all prepared to tell you this was impossible because the onbeforeunload event only reports to have been triggered by the window when you check out event.target, event.originaltarget, etc. If you override window.onclick, however, we can modify that method to register which element was last clicked on the page. Then, by providing code for window.onbeforeunload, we can specify new behavior that will check for the href of the element which was clicked last. Hooray, beer!

    Here’s code that will give you exactly the information you want though, in pure javascript and with no cruft to add inside your anchor tags. I’ve also thrown in the preventDefault() which will pop up the “This page is asking you to confirm that you want to leave – data you have entered may not be saved.” confirm box. Hope this helps – you can figure out what to do from here.

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <title>12065389</title>
        <meta charset="utf-8">
        <script type="text/javascript">
            var last_clicked;
    
            window.onclick = function(e) {
                last_clicked = e.target;
                return true;
            }
    
            window.onbeforeunload = function(e) {
                var e = e || window.event;
                if (last_clicked.href) {
                    alert(last_clicked.href);
                    e.preventDefault();
                }
            }
       </script>
    </head>
    <body>
    <a href="http://google.com">google</a>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the below code, I am defining an event handler and would like to
I would like to access skyDrive using PHP. I want to retreive list of
I would like to access a MySQL database using PHP. Can someone please explain
I would like to access class variables with for loop, here is my simple
I've got a website hosted on my IIS and I would like to access
I have an IEnumerable object. I would like to access based on index for
I would like to have access to the Seconds_Behind_Master field, (as returned by SHOW
I would like to define access right to Collabnet Subversion Directory with LDAP domain
We have a project (Web/PHP) where we would like users to access their files,
I have a class in my asp.net proj, I would like to get access

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.