<label id="LblText"></label>
<script>
function checkConnection() {
if(navigator.onLine) {
status = 'Online';
} else {
status = 'Offline';
}
document.getElementById('LblText').innerText = status;
}
checkConnection();
</script>
<script>
function checkConnection() {
if(navigator.onLine) {
status = 'Online';
} else {
status = 'Offline';
}
document.getElementById('LblText').innerText = status;
}
checkConnection();
</script>
EmoticonEmoticon