Packages

c

org.scalajs.dom.raw

NamedNodeMap

class NamedNodeMap extends Object

A collection of nodes returned by Node.attributes (also potentially for DocumentType.entities, DocumentType.notations). NamedNodeMaps are not in any particular order (unlike NodeList, although they may be accessed by an index as in an array (they may also be accessed with the item method). A NamedNodeMap object are live and will thus be auto-updated if changes are made to their contents internally or elsewhere.

MDN

Annotations
@JSType() @native() @JSGlobal()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NamedNodeMap
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NamedNodeMap()

Value Members

  1. def apply(index: Int): Attr
    Annotations
    @JSBracketAccess()
  2. def getNamedItem(name: String): Attr
  3. def getNamedItemNS(namespaceURI: String, localName: String): Attr
  4. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  5. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  6. def item(index: Int): Attr
  7. def length: Int
  8. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  9. def removeNamedItem(name: String): Attr
  10. def removeNamedItemNS(namespaceURI: String, localName: String): Attr
  11. def setNamedItem(arg: Attr): Attr
  12. def setNamedItemNS(arg: Attr): Attr
  13. def toLocaleString(): String
    Definition Classes
    Object
  14. def update(index: Int, v: Attr): Unit
    Annotations
    @JSBracketAccess()
  15. def valueOf(): Any
    Definition Classes
    Object