How can i capture the browser events like ‘window close’, ‘back button pressed’ using javascript or any other client script.
Is there a way to capture the events when clicked outside the document.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
The unload and beforeunload events will fire when the window is closed or the back button is pressed, but they will also fire for any type of navigation away from the current page.
You can’t capture events outside the context of your web page.