dom / latest / websocket / error_event.html /

WebSocket: error event

The error event is fired when a connection with a WebSocket has been closed due to an error (some data couldn't be sent for example).

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener('error', event => { })

onerror = event => { }

Event type

A generic Event.

Examples

// Create WebSocket connection
const socket = new WebSocket('ws://localhost:8080');

// Listen for possible errors
socket.addEventListener('error', function (event) {
  console.log('WebSocket error: ', event);
});

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
error_event
5
12
7
10
12.1
5
≤37
18
7
12.1
4.2
1.0

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/error_event