aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html')
-rw-r--r--files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html b/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html
index b804b9992c..94be8159b1 100644
--- a/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html
+++ b/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html
@@ -1,7 +1,8 @@
---
title: Wykorzystanie XMLHttpRequest
-slug: XMLHttpRequest/Using_XMLHttpRequest
+slug: Web/API/XMLHttpRequest/Using_XMLHttpRequest
translation_of: Web/API/XMLHttpRequest/Using_XMLHttpRequest
+original_slug: XMLHttpRequest/Using_XMLHttpRequest
---
<p><a href="/en-US/docs/DOM/XMLHttpRequest" title="XMLHttpRequest"><code>XMLHttpRequest</code></a> makes sending HTTP requests very easy.  You simply create an instance of the object, open a URL, and send the request.  The <a href="/en-US/docs/HTTP/HTTP_response_codes" title="HTTP response codes">HTTP status</a> of the result, as well as the result's contents, are available in the request object when the transaction is completed. This page outlines some of the common and even slightly obscure use cases for this powerful JavaScript object.</p>
<pre class="brush: js">function reqListener () {