The jQuery unload() method is used to unload a specific element. It attaches an event handler to unload event. The unload event is sent to the window element when the user navigates away from the page. It was deprecated in jQuery 1.8 version of jQuery library.
An unload event is triggered if you:
Syntax:
$(selector).unload(function)
It adds a function to the unload event.
Parameter | Description |
---|---|
Function | It is an essential parameter. It executes itself when the unload event is triggered. |
Let's take an example to demonstrate jQuery unload() event.
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script> $(document).ready(function(){ $(window).unload(function(){ alert("Goodbye!"); }); }); </script> </head> <body> <p>When you click <a href="http://www.rookienerd.com/">this link</a>, or close the window, unload event will be triggered.</p> </body> </html>