The abort
event of the AbortSignal
is fired when the associated request is aborted, i.e. using AbortController.abort()
.
On this page
AbortSignal: abort event
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
js
addEventListener('abort', (event) => { })
onabort = (event) => { }
Event type
A generic Event
with no added properties.
Examples
In the following snippets, we create a new AbortController
object, and get its AbortSignal
(available using the signal
property). Later on we check whether or not the signal has been aborted using an event handler property,
You can detect the abort
event using an addEventListener
method:
js
const controller = new AbortController();
const signal = controller.signal;
signal.addEventListener("abort", () => {
console.log("Request aborted");
});
Or use the onabort
event handler property:
js
const controller = new AbortController();
const signal = controller.signal;
signal.onabort = () => {
console.log("Request aborted");
};
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 | |
abort_event |
66 | 16 | 57 | No | 53 | 11.1 | 66 | 66 | 57 | 47 | 11.3 | 9.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event