--- title: GlobalEventHandlers.onabort slug: Web/API/GlobalEventHandlers/onabort translation_of: Web/API/GlobalEventHandlers/onabort ---
{{ ApiRef("HTML DOM") }}

Summary

Обработчик событий, позволяющий прерывать события объекта window. (Недоступен для Firefox 2 и Safari).

TODO define what "abort" is. Closing the window via window manager? Stopping the load of the page? By which means and reasons (user, network/server)? At which stages would it fire / be catched? Для IE, событие onabort доступно только для тега img.

Syntax

window.onabort = funcRef

Example

window.onabort = function() {
  alert("Load aborted.");
}

Specification

Specification Status Comment
{{SpecName('HTML WHATWG','webappapis.html#handler-onabort','onabort')}} {{Spec2('HTML WHATWG')}}  

Browser Compatibility

{{Compat("api.GlobalEventHandlers.onabort")}}