--- title: element.removeAttributeNS slug: Web/API/Element/removeAttributeNS translation_of: Web/API/Element/removeAttributeNS ---
<breadcrumbs></breadcrumbs>{{ ApiRef("DOM") }}== Summary ==
<code>removeAttributeNS</code> removes the specified attribute from an element. removeAttributeNS
要素から指定の属性を取り除きます。
In Firefox 3 and later, this method resets DOM values to their defaults. Firefox 3以降ではこのメソッドはDOMの値をデフォルト値にリセットします。== Syntax ==
element.removeAttributeNS(namespace,attrName);
* <code>namespace</code> is a string that contains the namespace of the attribute. * <code>attrName</code> is a string that names the attribute to be removed from the current node.
namespace
は属性の名前空間を含んでいる文字列です。attrName
は現在のノードから取り除く属性の名前を表す文字列です。== Example ==// <div id="div1" xmlns:special="http://www.mozilla.org/ns/specialspace" // special:specialAlign="utterleft" width="200px" /> d = document.getElementById("div1"); d.removeAttributeNS("http://www.mozilla.org/ns/specialspace", "specialAlign"); // now: <div id="div1" width="200px" />
{{ DOMAttributeMethods() }}== Specification ==