Skip to content

Instantly share code, notes, and snippets.

@s-en-o
Created May 10, 2023 06:24
Show Gist options
  • Save s-en-o/8bf14d39f72e99fb225c81fb6e839fb7 to your computer and use it in GitHub Desktop.
Save s-en-o/8bf14d39f72e99fb225c81fb6e839fb7 to your computer and use it in GitHub Desktop.
Checking server ping
const startTime = new Date();
const img = new Image();
img.onload = () => { const endtime = new Date(); const ping = endtime.getTime() - startTime.getTime(); alert(img.src + " loaded in " + ping + " ms"); };
img.src = "https://somewebsite.com/some-image.png";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment