--- title: Element.setAttributeNS() slug: Web/API/Element/setAttributeNS translation_of: Web/API/Element/setAttributeNS ---

{{ APIRef("DOM") }}

setAttributeNS añade un nuevo atributo o cambia el valor de un atributo con el namespace dado y el nombre.

Sintaxis

elemento.setAttributeNS(namespace,nombre,valor)

Ejemplo

var d = document.getElementById("d1");
d.setAttributeNS("http://www.mozilla.org/ns/specialspace", "align", "center");

Notas

{{ DOMAttributeMethods() }}

Especificación

DOM Level 2 Core: setAttributeNS