I\'m trying to get a pop-up to, well, pop up when there is no internet connection on the device.
I got the following example working, but now I want the alert only to sh
Add else to do nothing...
if (navigator.network.connection.type == Connection.NONE) { alert('Geen internet :('); } else { // nothing };