Answered
check if online
Hi,
I'm not as close to network, networkprotocolls and co.
question:
Will this be a safe way to check if a user is 'online' (connected to the internet by wlan or lan or ...)
var myConnection = new Socket();
if(myConnection.open ("www.google.de:80")) {myConnection.close();}else{alert('Not connected.')}