![]() |
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 | HTML Window Event Attributes |
HTML onbeforeprint Event Attribute | HTML Window Event Attributes |
HTML onbeforeunload Event Attribute | HTML Window Event Attributes |
HTML onerror Event Attribute | HTML Window Event Attributes |
HTML onhashchange Event Attribute | HTML Window Event Attributes |
HTML onload Event Attribute | HTML Window Event Attributes |
HTML onoffline Event Attribute | HTML Window Event Attributes |
HTML ononline Event Attribute | HTML Window Event Attributes |
HTML onpageshow Event Attribute | HTML Window Event Attributes |
HTML onresize Event Attribute | HTML Window Event Attributes |
HTML onunload Event Attribute | HTML Window Event Attributes |
Example of HTML onpageshow Event Attribute | HTML Window Event Attributes |
Browser Support of HTML onpageshow Event Attribute | HTML Window Event Attributes |
Syntax of HTML onpageshow Event Attribute | HTML Window Event Attributes |
Attribute Values of HTML onpageshow Event Attribute | HTML Window Event Attributes |
Technical Details of HTML onpageshow Event Attribute | HTML Window Event Attributes |
How to add a JavaScript when a user navigates to a webpage | HTML Window Event Attributes |
Type
: |
Develop |
Category
: |
Web Tutorial |
Sub Category
: |
HTML Window Event Attributes |
Uploaded by
: |
Admin |
Read Article https://horje.com/learn/1434/reference