Skip to content

Instantly share code, notes, and snippets.

@devdays
Last active August 29, 2015 14:10
Show Gist options
  • Save devdays/462ff14628785f261e60 to your computer and use it in GitHub Desktop.
Save devdays/462ff14628785f261e60 to your computer and use it in GitHub Desktop.
Check for WebSocket support in your browser by checking for the existence of WebSocket in the window object
function onload() {
if (window.WebSocket) {
// WebSocket supported
} else {
// WebSocket not supported
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment