Which method should you use?

You are developing a web application that can function when users are not connected to the
Internet.
You need to check the Internet connectivity status of a user’s browser.
Which method should you use?

You are developing a web application that can function when users are not connected to the
Internet.
You need to check the Internet connectivity status of a user’s browser.
Which method should you use?

A.
Option A

B.
Option B

C.
Option C

D.
Option D

Explanation:



Leave a Reply 7

Your email address will not be published. Required fields are marked *


Enrique

Enrique

Answer is D.

BarryC

BarryC

Actually, none of the above are correct. As freedeveloper stated, navigator.onLine gives the desired result, not navigator.online.

The Dude Abides

The Dude Abides

if(navigator.onLine) { alert(‘on line!’) ; }

works for me…

Alaeddin

Alaeddin

Correct Answer = D

brkyctn

brkyctn

Explanation/Reference:
Navigator onLine Property
The onLine property returns a Boolean value that specifies whether the browser is in online or offline mode.
Example
Find out whether the browser is online:
var x = “Is the browser online? ” + navigator.onLine;
The result of x will be:
Is the browser online? true
Reference: Navigator onLine Property