aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:25 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:25 +0100
commitb8170f78422f2269dfc9df7760cc1ad51c048c00 (patch)
treebbe8555451304d47a06232ea37338c1678f2f1ed /files/pl/web/api/xmlhttprequest/using_xmlhttprequest/index.html
parentde5c456ebded0e038adbf23db34cc290c8829180 (diff)
downloadtranslated-content-b8170f78422f2269dfc9df7760cc1ad51c048c00.tar.gz
translated-content-b8170f78422f2269dfc9df7760cc1ad51c048c00.tar.bz2
translated-content-b8170f78422f2269dfc9df7760cc1ad51c048c00.zip
unslug pl: modify
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 () {