HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Javascript - Navigator online</title> </head> <body> <h2>Using Navigator's "online" property to check weather browser is online.</h2> <p id="output"></p> <button onclick="check()">Check online status</button> <script> function check(){ var onlineStatus = navigator.onLine; if (onlineStatus) { document.getElementById("output").innerHTML = "Browser is online"; } else { document.getElementById("output").innerHTML = "Browser is offline"; } } </script> </body> </html>
RunĀ
x
x