![]() |
Definition and UsageThe onpageshow event occurs when a user navigates to a webpage. The onpageshow event is similar to the onload event, except that it occurs after the onload event when the page first loads. Also, the onpageshow event occurs every time the page is loaded, whereas the onload event does not occur when the page is loaded from the cache. |
Example:
HTML
<body onpageshow="myFunction()">
The numbers in the table specify the first browser version that fully supports the event attribute.
<element onpageshow="script">
Value | Description |
---|---|
script | The script to be run on onpageshow |
Supported HTML tags: | <body> |
---|
See the code.
Example:
HTML
<!DOCTYPE html>
<html>
<body onpageshow="myFunction()">
<h1>Hello World!</h1>
<script>
function myFunction() {
alert("Welcome!");
}
</script>
</body>
</html>
html event attributes |
HTML onafterprint Event Attribute | Window Event Attributes |
HTML onbeforeprint Event Attribute | Window Event Attributes |
HTML onbeforeunload Event Attribute | Window Event Attributes |
HTML onerror Event Attribute | Window Event Attributes |
HTML onhashchange Event Attribute | Window Event Attributes |
HTML onload Event Attribute | Window Event Attributes |
HTML onoffline Event Attribute | Window Event Attributes |
HTML ononline Event Attribute | Window Event Attributes |
HTML onpageshow Event Attribute | Window Event Attributes |
HTML onresize Event Attribute | Window Event Attributes |
HTML onunload Event Attribute | Window Event Attributes |
Example of HTML onpageshow Event Attribute | Window Event Attributes |
Browser Support of HTML onpageshow Event Attribute | Window Event Attributes |
Syntax of HTML onpageshow Event Attribute | Window Event Attributes |
Attribute Values of HTML onpageshow Event Attribute | Window Event Attributes |
Technical Details of HTML onpageshow Event Attribute | Window Event Attributes |
How to add a JavaScript when a user navigates to a webpage | Window Event Attributes |
Type: | Develop |
Category: | Web Tutorial |
Sub Category: | Window Event Attributes |
Uploaded by: | Admin |
Reffered: https://www.w3schools.com/tags/ev_onpageshow.asp