From 3601b7bb982e958927e069715cfe07430bce7196 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Thu, 15 Jul 2021 12:59:34 -0400 Subject: delete pages that were never translated from en-US (es, part 1) (#1547) --- .../web/api/xmlhttprequesteventtarget/index.html | 68 ---------------------- 1 file changed, 68 deletions(-) delete mode 100644 files/es/web/api/xmlhttprequesteventtarget/index.html (limited to 'files/es/web/api/xmlhttprequesteventtarget/index.html') diff --git a/files/es/web/api/xmlhttprequesteventtarget/index.html b/files/es/web/api/xmlhttprequesteventtarget/index.html deleted file mode 100644 index f53063d82b..0000000000 --- a/files/es/web/api/xmlhttprequesteventtarget/index.html +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: XMLHttpRequestEventTarget -slug: Web/API/XMLHttpRequestEventTarget -tags: - - AJAX - - API - - NeedsBrowserCompatibility - - NeedsContent - - NeedsTranslation - - Reference - - TopicStub - - XMLHttpRequest -translation_of: Web/API/XMLHttpRequestEventTarget ---- -

{{APIRef("XMLHttpRequest")}}

- -

XMLHttpRequestEventTarget is the interface that describes the event handlers you can implement in an object that will handle events for an {{ domxref("XMLHttpRequest") }}.

- -

{{InheritanceDiagram}}

- -

Properties

- -
-
{{ domxref("XMLHttpRequestEventTarget.onabort") }}
-
Contains the function to call when a request is aborted and the {{event('abort')}} event is received by this object.
-
{{ domxref("XMLHttpRequestEventTarget.onerror") }}
-
Contains the function to call when a request encounters an error and the {{event('error')}} event is received by this object.
-
{{ domxref("XMLHttpRequestEventTarget.onload") }}
-
Contains the function to call when an HTTP request returns after successfully fetching content and the {{event('load')}} event is received by this object.
-
{{ domxref("XMLHttpRequestEventTarget.onloadstart") }}
-
Contains the function that gets called when the HTTP request first begins loading data and the {{event('loadstart')}} event is received by this object.
-
{{ domxref("XMLHttpRequestEventTarget.onprogress") }}
-
Contains the function that is called periodically with information about the progress of the request and the {{event('progress')}} event is received by this object.
-
{{ domxref("XMLHttpRequestEventTarget.ontimeout") }}
-
Contains the function that is called if the event times out and the {{event("timeout")}} event is received by this object; this only happens if a timeout has been previously established by setting the value of the XMLHttpRequest object's timeout attribute.
-
{{ domxref("XMLHttpRequestEventTarget.onloadend") }}
-
Contains the function that is called when the load is completed, even if the request failed, and the {{event('loadend')}} event is received by this object.
-
- -

Specifications

- - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName('XMLHttpRequest')}}{{Spec2('XMLHttpRequest')}}WHATWG living standard
- -

Browser compatibility

- - - -

{{Compat("api.XMLHttpRequestEventTarget")}}

- -

See also

- - -- cgit v1.2.3-54-g00ecf