aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/element/removeattribute/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/element/removeattribute/index.html')
-rw-r--r--files/pl/web/api/element/removeattribute/index.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/files/pl/web/api/element/removeattribute/index.html b/files/pl/web/api/element/removeattribute/index.html
new file mode 100644
index 0000000000..9f3c2c4892
--- /dev/null
+++ b/files/pl/web/api/element/removeattribute/index.html
@@ -0,0 +1,36 @@
+---
+title: element.removeAttribute
+slug: Web/API/Element/removeAttribute
+tags:
+ - DOM
+ - Dokumentacja_Gecko_DOM
+ - Gecko
+ - Wszystkie_kategorie
+translation_of: Web/API/Element/removeAttribute
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
+<p><code>removeAttribute</code> usuwa atrybut bieżącego elementu.</p>
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
+<pre class="eval"><i>element</i>.removeAttribute(<i>nazwaAtrybutu</i>)
+</pre>
+<ul>
+ <li><code>nazwaAtrybutu</code> to ciąg znaków określający nazwę atrybutu elementu
+ <i>
+ element</i>
+ , który to atrybut ma zostać usunięty</li>
+</ul>
+<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
+<pre>// &lt;div align="left" width="200px"&gt;
+document.getElementById("div1").removeAttribute("align");
+// teraz: &lt;div width="200px"&gt;
+</pre>
+<h3 id="Uwagi" name="Uwagi">Uwagi</h3>
+<p>Aby usunąć atrybut, powinieneś używać metody <code>removeAttribute</code>, a nie ustawiać wartość atrybutu na <code>null</code> za pomocą <a href="pl/DOM/element.setAttribute">setAttribute</a>.</p>
+<p>Próba usunięcia nieistniejącego atrybutu elementu nie wyrzuca wyjątku.</p>
+<p>{{ DOMAttributeMethods() }}</p>
+<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
+<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-6D6AC0F9">DOM Level 2 Core: removeAttribute</a> (wprowadzono w <a class="external" href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-removeAttribute">DOM Level 1 Core</a>)</p>
+<div class="noinclude">
+  </div>
+<p>{{ languages( { "en": "en/DOM/element.removeAttribute", "fr": "fr/DOM/element.removeAttribute", "ja": "ja/DOM/element.removeAttribute" } ) }}</p>