Articles tagged: XMLHttpRequest
Found 54 documents
- AJAX
- AJAX/Getting_Started This article guides you through the AJAX basics and gives you two simple hands-on examples to ...
- Archive/Firefox_OS/Firefox_OS_apps/Reference_apps/rtcamera
- Archive/JXON JXON (lossless J avaScript X ML O bject N otation) is a generic name by which is defined the ...
- Displaying_web_content_in_an_extension_without_security_issues One of the most common security issues with extensions is execution of remote code in privileged ...
- Downloading_JSON_and_JavaScript_in_extensions A common practice found in many extensions is using XMLHttpRequest (or some other mechanism) to ...
- Mozilla/Tech/XPCOM/Reference/Interface/NsIDOMProgressEvent The nsIDOMProgressEvent is used in the media elements (video and audio) to inform interested ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIXMLHttpRequest nsIXMLHttpRequest along with nsIJSXMLHttpRequest and nsIXMLHttpRequestEventTarget are Mozilla's ...
- Mozilla/Tech/XPCOM/Reference/Interface/NsIXMLHttpRequestEventTarget When the handler functions for these events are called, they receive as a parameter a ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIXMLHttpRequestUpload
- Mozilla/XMLHttpRequest_changes_for_Gecko_1.8 This document describes some of the changes that have been made to Gecko 's XMLHttpRequest ...
- Same-origin_policy_for_file:_URIs In Gecko 1.8 or earlier, any two file: URIs are considered to be same-origin. In other words, ...
- Web/API/Fetch_API The Fetch API provides an interface for fetching resources (including across the network). It ...
- Web/API/Fetch_API/Basic_concepts At the heart of Fetch are the Interface abstractions of HTTP Request s, Response s, Headers, and ...
- Web/API/FormData The FormData interface provides a way to easily construct a set of key/value pairs representing ...
- Web/API/FormData/append The append() method of the FormData interface appends a new value onto an existing key inside a ...
- Web/API/FormData/delete The delete() method of the FormData interface deletes a key and its value(s) from a FormData object.
- Web/API/FormData/FormData The FormData() constructor creates a new FormData object.
- Web/API/FormData/get The get() method of the FormData interface returns the first value associated with a given key ...
- Web/API/FormData/getAll The getAll() method of the FormData interface returns all the values associated with a given key ...
- Web/API/FormData/has The has() method of the FormData interface returns a boolean stating whether a FormData object ...
- Web/API/FormData/set The set() method of the FormData interface sets a new value for an existing key inside a ...
- Web/API/FormData/Using_FormData_Objects The FormData object lets you compile a set of key/value pairs to send using XMLHttpRequest. It ...
- Web/API/XMLHttpRequest/abort The XMLHttpRequest.abort() method aborts the request if it has already been sent. When a request ...
- Web/API/XMLHttpRequest/getAllResponseHeaders The XMLHttpRequest.getAllResponseHeaders() method returns all the response headers, separated by ...
- Web/API/XMLHttpRequest/getResponseHeader The XMLHttpRequest.getResponseHeader() method returns the string containing the text of the ...
- Web/API/XMLHttpRequest/HTML_in_XMLHttpRequest The W3C XMLHttpRequest specification adds HTML parsing support to XMLHttpRequest, which ...
- Web/API/XMLHttpRequest/mozBackgroundRequest XMLHttpRequest.mozBackgroundRequest is a boolean. Indicates whether or not the object represents ...
- Web/API/XMLHttpRequest/onreadystatechange An EventHandler that is called whenever the readyState attribute changes. The callback is called ...
- Web/API/XMLHttpRequest/open The XMLHttpRequest.open() method initializes a request. This method is to be used from ...
- Web/API/XMLHttpRequest/overrideMimeType The XMLHttpRequest.overrideMimeType() method overrides the MIME type returned by the server. ...
- Web/API/XMLHttpRequest/readyState The XMLHttpRequest.readyState property returns the state an XMLHttpRequest client is in. An XHR ...
- Web/API/XMLHttpRequest/response The XMLHttpRequest.response property returns the response's body. It can be of the type ...
- Web/API/XMLHttpRequest/responseText The XMLHttpRequest.responseText property returns a DOMString that contains the response to the ...
- Web/API/XMLHttpRequest/responseType The XMLHttpRequest.responseType property is an enumerated value that returns the type of the ...
- Web/API/XMLHttpRequest/responseURL The XMLHttpRequest.responseURL property returns the serialized URL of the response or the empty ...
- Web/API/XMLHttpRequest/responseXML The XMLHttpRequest.responseXML property returns a Document containing the response to the ...
- Web/API/XMLHttpRequest/send The XMLHttpRequest.send() method sends the request. If the request is asynchronous (which is the ...
- Web/API/XMLHttpRequest/sendAsBinary The XMLHttpRequest.sendAsBinary() method is a variant of the send() method that sends binary data.
- Web/API/XMLHttpRequest/Sending_and_Receiving_Binary_Data The r esponseType property of the XMLHttpRequest object can be set to change the expected ...
- Web/API/XMLHttpRequest/setRequestHeader The XMLHttpRequest.setRequestHeader() method sets the value of an HTTP request header. You must ...
- Web/API/XMLHttpRequest/status The XMLHttpRequest.status property returns the numerical status code of the response of the ...
- Web/API/XMLHttpRequest/statusText The XMLHttpRequest.statusText property returns a DOMString containing the response's status ...
- Web/API/XMLHttpRequest/Synchronous_and_Asynchronous_Requests XMLHttpRequest supports both synchronous and asynchronous communications. In general, however, ...
- Web/API/XMLHttpRequest/timeout The XMLHttpRequest.timeout property is an unsigned long representing the number of milliseconds ...
- Web/API/XMLHttpRequest/upload The XMLHttpRequest.upload property returns an XMLHttpRequestUpload object, representing the ...
- Web/API/XMLHttpRequest/Using_XMLHttpRequest XMLHttpRequest makes sending HTTP requests very easy. You simply create an instance of the ...
- Web/API/XMLHttpRequest/withCredentials The XMLHttpRequest.withCredentials property is a Boolean that indicates whether or not ...
- Web/API/XMLHttpRequest/XMLHttpRequest For details about how to use XMLHttpRequest, see Using XMLHttpRequest.
- Web/API/XMLHttpRequestEventTarget XMLHttpRequestEventTarget is the interface that describes the event handlers you can implement ...
- Web/Events/readystatechange The readystatechange event is fired when the readyState attribute of a document has changed.
- Web/Events/timeout The timeout event implements the ProgressEvent interface, which inherits from Event — it has ...
- Web/Guide/Parsing_and_serializing_XML The Web platform provides the following objects for parsing and serializing XML:
- Web/HTTP/Access_control_CORS A resource makes a cross-origin HTTP request when it requests a resource from a different domain ...