THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

onbeforeunload Event

Event Object Reference Event Object

Example

Execute a JavaScript when the page is about to be unloaded:

<body onbeforeunload="return myFunction()">
Try it Yourself »

Definition and Usage

The onbeforeunload event occurs when the document is about to be unloaded.

This event allows you to display a message in a confirmation dialog box to inform the user whether he/she wants to stay or leave the current page.

The default message that appears in the confirmation box, is different in different browsers. However, the standard message is something like "Are you sure you want to leave this page?". This message cannot be removed.

However, you can write a custom message together with the default message. See the first example on this page.

Note: If the onbeforeunload event is not assigned to the <body> element, you must assign/attach the event on the window object, and use the returnValue property to create a custom message (see syntax examples below).

Note: In Firefox, only the default message will be displayed (not the custom message (if any)).


Browser Support

The numbers in the table specify the first browser version that fully supports the event.

Event
onbeforeunload Yes Yes Yes Yes 15.0

Syntax

In HTML:

<element onbeforeunload="myScript">
Try it Yourself »

In JavaScript:

object.onbeforeunload=function(){myScript};
Try it Yourself »

In JavaScript, using the addEventListener() method:

object.addEventListener("beforeunload", myScript);
Try it Yourself »

Note: The addEventListener() method is not supported in Internet Explorer 8 and earlier versions.


Technical Details

Bubbles: No
Cancelable: Yes
Event type: Event
Supported HTML tags:  <body>
DOM Version: Level 2 Events

Event Object Reference Event Object