![]() |
Definition and UsageThe ononline attribute fires when the browser's connection status changes from offline to online. Tip: The ononline attribute is the opposite of the onoffline attribute. |
<element ononline="script">
Value | Description |
---|---|
script | The script to be run on ononline |
Supported HTML tags: | <body> |
---|
Execute a JavaScript when the browser changes from working offine to working online.
Example:
HTML
<body ononline="myFunction()">
Try to disconnect from the internet to toggle between working online and offline
Example:
HTML
<!DOCTYPE html>
<html>
<body ononline="onFunction()" onoffline="offFunction()">
<p>Try to disconnect from the internet to toggle between working online and offline.</p>
<script>
function onFunction() {
alert ("Your browser is working online.");
}
function offFunction() {
alert ("Your browser is working offline.");
}
</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 |
Browsers Support of HTML ononline Event Attribute | Window Event Attributes |
Syntax of HTML ononline Event Attribute | Window Event Attributes |
Attribute Values of HTML ononline Event Attribute | Window Event Attributes |
Technical Details of HTML ononline Event Attribute | Window Event Attributes |
Example of HTML ononline Event Attribute | Window Event Attributes |
How to add a JavaScript when the browser changes from working offine to working online | Window Event Attributes |
Type: | Develop |
Category: | Web Tutorial |
Sub Category: | Window Event Attributes |
Uploaded by: | Admin |
Reffered: https://www.w3schools.com/tags/ev_ononline.asp