
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Execute a script when the browser window is closed in HTML?
The unloaded attribute triggers when you close the web browser window. You can try to run the following code to implement unloaded attribute in HTML −
Example
<!DOCTYPE html> <html> <body onunload = "display()"> <h2>Tutorialspoint</h2> <h3>Simply Easy learning</h3> <script> function display() { alert("Bye!"); } </script> </body> </html>
- Related Questions & Answers
- Execute a script when the browser window is being resized in HTML?
- Execute a script when the browser starts to work online in HTML?
- Execute a script when the browser starts to work offline in HTML?
- Execute a script when the window's history changes in HTML?
- Execute a script when the element is invalid in HTML?
- Execute a script when the file is unavailable in HTML?
- How to delete a localStorage item when the browser window/tab is closed?
- Execute a script when the browser is in the process of getting the media data in HTML?
- Execute a script when the element is finished loading in HTML?
- Execute a script when the element is being clicked in HTML?
- Execute a script when the element is being dragged in HTML?
- Execute a script when media data is loaded in HTML?
- Execute a script when the browser is unable to fetch the media data for whatever reason in HTML?
- Execute a script when the element is being double-clicked in HTML?
- Execute a script when the dragged element is being dropped in HTML?
Advertisements