Skip to content

Instantly share code, notes, and snippets.

@jpsilvashy
Forked from louisremi/serverReachable.js
Last active November 10, 2020 09:59
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save jpsilvashy/5725579 to your computer and use it in GitHub Desktop.
Save jpsilvashy/5725579 to your computer and use it in GitHub Desktop.
function hostReachable() {
// Handle IE and more capable browsers
var xhr = new ( window.ActiveXObject || XMLHttpRequest )( "Microsoft.XMLHTTP" );
var status;
// Open new request as a HEAD to the root hostname with a random param to bust the cache
xhr.open( "HEAD", "//" + window.location.hostname + "/?rand=" + Math.floor((1 + Math.random()) * 0x10000), false );
// Issue request and handle response
try {
xhr.send();
return ( xhr.status >= 200 && xhr.status < 300 || xhr.status === 304 );
} catch (error) {
return false;
}
}
@vin-ai
Copy link

vin-ai commented Jun 17, 2013

This doesn't work!

Always returns false

@jpsilvashy
Copy link
Author

@Vinaykrsharma, It's working great for me, are you trying this on your local server or on a remote server?

@aledrus
Copy link

aledrus commented Mar 6, 2014

Hi,

I get this error:
Bad constructor. (W056) var xhr = new ( window.ActiveXObject || XMLHttpRequest )( "Microsoft.XMLHTTP" );

@Parthmy007
Copy link

how to check ? it's return always false

@fallen90
Copy link

It's working for me ^_^ convert this to a runnable script, then run this from the console in chrome developer tools.

// Handle IE and more capable browsers
var xhr = new ( window.ActiveXObject || XMLHttpRequest )( "Microsoft.XMLHTTP" );
var status;

// Open new request as a HEAD to the root hostname with a random param to bust the cache
xhr.open( "HEAD", "//" + window.location.hostname + "/?rand=" + Math.floor((1 + Math.random()) * 0x10000), false );

// Issue request and handle response
try {
xhr.send();
console.log ( xhr.status >= 200 && xhr.status < 300 || xhr.status === 304 );
} catch (error) {
console.log(error);
}

Working for localhost and remote (github)

@cmpscabral
Copy link

thanks for this script :) I just added an option to check the port, if needed - https://gist.github.com/cmpscabral/7626ae29475283d32771

@juanvelez89
Copy link

but now local always return true.

@Hettomei
Copy link

Hi,

Thank you for this simple gist.

If you have a port problem, or if you code on a "localhost:8888", try to use window.location.host instead of window.location.hostname

@michaellopez
Copy link

@sumit63626
Copy link

Hi i am trying this on my local server and using xhr.open( "HEAD","http://www.google.com" , false ); and it is always returning false. KIndly help

Copy link

ghost commented Jan 27, 2016

@sumit read about CORS

@davidwwu
Copy link

davidwwu commented Aug 16, 2016

// Open new request as a HEAD to the root hostname with a random param to bust the cache << Why do you have to bust the cache? And how is it going to bust the cache? Thanks!

@mhdSid
Copy link

mhdSid commented Sep 14, 2017

And if you want to wait until online you can use this:

public waitUntilOnline(): any {

        return new window.Promise((resolve, reject) => {  

        	let interval: any = window.setInterval(() => {   

        		if (this.isOnline()) {   

        			window.clearInterval(interval);  
 
        			interval = undefined;   

        			resolve(true); 
  
        		}  else {   

        			console.log('Browser is still offine...');  
 
        		}   

        	}, 2500);   

        });   
}

this.waitUntilOnline().then((isOnline: boolean) => {
 //always returns true here. Do anything when the browser switches from offline to online
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment