files/en-us/web/api/xmlhttprequest/send/index.md
{{APIRef("XMLHttpRequest API")}} {{AvailableInWorkers("window_and_worker_except_service")}}
The {{domxref("XMLHttpRequest")}} method
send() sends the request to the server.
If the request is asynchronous (which is the default), this method returns as soon as the request is sent and the result is delivered using events. If the request is synchronous, this method doesn't return until the response has arrived.
send() accepts an optional parameter which lets you specify the request's
body; this is primarily used for requests such as {{HTTPMethod("PUT")}}. If the request
method is {{HTTPMethod("GET")}} or {{HTTPMethod("HEAD")}}, the body
parameter is ignored and the request body is set to null.
If no {{HTTPHeader("Accept")}} header has been set using the
{{domxref("XMLHttpRequest.setRequestHeader", "setRequestHeader()")}}, an
Accept header with the type "*/*" (any type) is sent.
send()
send(body)
body {{optional_inline}}
: A body of data to be sent in the XHR request. This can be:
XMLHttpRequestBodyInit, which per the Fetch spec can be a {{domxref("Blob")}}, an {{jsxref("ArrayBuffer")}}, a {{jsxref("TypedArray")}}, a {{jsxref("DataView")}}, a {{domxref("FormData")}}, a {{domxref("URLSearchParams")}}, or a string.nullIf no value is specified for the body, a default value of null is used.
The best way to send binary content (e.g., in file uploads) is by using
a {{jsxref("TypedArray")}}, a {{jsxref("DataView")}} or a {{domxref("Blob")}} object
in conjunction with the send() method.
None ({{jsxref("undefined")}}).
InvalidStateError {{domxref("DOMException")}}
send() has already been invoked for the request, and/or the request is complete.NetworkError {{domxref("DOMException")}}
GET.const xhr = new XMLHttpRequest();
xhr.open("GET", "/server", true);
xhr.onload = () => {
// Request finished. Do processing here.
};
xhr.send(null);
// xhr.send('string');
// xhr.send(new Blob());
// xhr.send(new Int8Array());
// xhr.send(document);
const xhr = new XMLHttpRequest();
xhr.open("POST", "/server", true);
// Send the proper header information along with the request
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = () => {
// Call a function when the state changes.
if (xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
// Request finished. Do processing here.
}
};
xhr.send("foo=bar&lorem=ipsum");
// xhr.send(new Int8Array());
// xhr.send(document);
{{Specifications}}
{{Compat}}