अनलोड करने से पहले ईवेंट विशेषता' तब सक्रिय होती है जब दस्तावेज़ अनलोड होने के लिए तैयार होता है।
उदाहरण
आप अनलोड करने से पहले को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं विशेषता -
<!DOCTYPE html> <html> <body onbeforeunload = "return display()"> <p>Close this window or press F5.</p> <script> function display() { return "Wanna stay here or leave?"; } </script> </body> </html>