aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-05-22 00:42:07 +0000
committerMDN <actions@users.noreply.github.com>2021-05-22 00:42:07 +0000
commit156b518735b8da6cc954105b0a1250ca31449381 (patch)
tree6a0e35a9622dc00acfc816503410e9a4cd360bc4 /files/pl/web
parent73aff5bd1edf14df05228693ed569b652ce89eee (diff)
downloadtranslated-content-156b518735b8da6cc954105b0a1250ca31449381.tar.gz
translated-content-156b518735b8da6cc954105b0a1250ca31449381.tar.bz2
translated-content-156b518735b8da6cc954105b0a1250ca31449381.zip
[CRON] sync translated content
Diffstat (limited to 'files/pl/web')
-rw-r--r--files/pl/web/api/childnode/remove/index.html91
1 files changed, 0 insertions, 91 deletions
diff --git a/files/pl/web/api/childnode/remove/index.html b/files/pl/web/api/childnode/remove/index.html
deleted file mode 100644
index 377e529db2..0000000000
--- a/files/pl/web/api/childnode/remove/index.html
+++ /dev/null
@@ -1,91 +0,0 @@
----
-title: ChildNode.remove()
-slug: Web/API/ChildNode/remove
-translation_of: Web/API/ChildNode/remove
----
-<div>{{APIRef("DOM")}}</div>
-
-<p>Metoda <code><strong>ChildNode.remove()</strong></code> usuwa obiekt z drzewa, do którego należy.</p>
-
-<h2 id="Składnia">Składnia</h2>
-
-<pre class="syntaxbox"><em>node</em>.remove();
-</pre>
-
-<h2 id="Przykład">Przykład</h2>
-
-<h3 id="Użycie_remove()">Użycie <code>remove()</code></h3>
-
-<pre class="brush: html">&lt;div id="div-01"&gt;To jest div-01&lt;/div&gt;
-&lt;div id="div-02"&gt;To jest div-02&lt;/div&gt;
-&lt;div id="div-03"&gt;To jest div-03&lt;/div&gt;
-</pre>
-
-<pre class="brush: js">var el = document.getElementById('div-02');
-el.remove(); // Usuwa div z ID 'div-02'
-</pre>
-
-<h3 id="ChildNode.remove()_jest_poza_zakresem"><code>ChildNode.remove()</code> jest poza zakresem</h3>
-
-<p>Metoda <code>remove()</code> nie wchodzi w zakres wyrażenia <code>with</code>. Zobacz  {{jsxref("Symbol.unscopables")}}, aby uzyskać więcej informacji.</p>
-
-<pre class="brush: js">with(node) {
- remove();
-}
-// ReferenceError: remove is not defined </pre>
-
-<h2 id="Polyfill">Polyfill</h2>
-
-<p>Można utworzyć polyfill metody <code>remove()</code> w Internet Explorer 9 (lub wyższej wersji) za pomocą następującego kodu: </p>
-
-<pre class="brush: js">// from:https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md
-(function (arr) {
- arr.forEach(function (item) {
- if (item.hasOwnProperty('remove')) {
- return;
- }
- Object.defineProperty(item, 'remove', {
- configurable: true,
- enumerable: true,
- writable: true,
- value: function remove() {
- this.parentNode.removeChild(this);
- }
- });
- });
-})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);</pre>
-
-<h2 id="Specyfikacje">Specyfikacje</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('DOM WHATWG', '#dom-childnode-remove', 'ChildNode.remove')}}</td>
- <td>{{Spec2('DOM WHATWG')}}</td>
- <td>Initial definition.</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM4', '#dom-childnode-remove', 'ChildNode.remove')}}</td>
- <td>{{Spec2('DOM4')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Kompatybilność_z_przeglądarkami">Kompatybilność z przeglądarkami</h2>
-
-<div>{{Compat("api.ChildNode.remove")}}</div>
-
-<h2 id="Zobacz_również">Zobacz również</h2>
-
-<ul>
- <li>The {{domxref("ChildNode")}} pure interface.</li>
- <li>
- <div class="syntaxbox">Object types implementing this pure interface: {{domxref("CharacterData")}}, {{domxref("Element")}}, and {{domxref("DocumentType")}}.</div>
- </li>
-</ul>