Worker.onerror
The onerror
property of the Worker
interface represents an event handler, that is a function to be called when the error
event occurs.
Syntax
myWorker.onerror = function(event) { ... };
Example
The following code snippet creates a Worker
object using the Worker()
constructor and sets up an onerror
handler on the resulting object:
var myWorker = new Worker('worker.js'); myWorker.onerror = function(event) { console.log('There is an error with your worker!'); }
Specifications
Specification |
---|
HTML Standard (HTML) # handler-abstractworker-onerror |
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 | |
onerror |
4 |
12 |
3.5 |
10 |
10.6 |
4 |
4 |
18 |
4 |
11 |
5 |
1.0 |
© 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/Worker/onerror