Trait/Object

io.scalajs.dom.collection

NodeList

Related Docs: object NodeList | package collection

Permalink

trait NodeList[A] extends Object with JsCollection[A]

JavaScript HTML DOM Node List

Annotations
@RawJSType() @native()
See also

https://developer.mozilla.org/en-US/docs/Web/API/NodeList

http://www.w3schools.com/js/js_htmldom_nodelist.asp

Linear Supertypes
JsCollection[A], Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeList
  2. JsCollection
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(index: Int): A

    Permalink

    Returns the element at the specified index

    Returns the element at the specified index

    index

    the specified index

    returns

    the element at the specified index

    Definition Classes
    NodeList → JsCollection
    Annotations
    @JSBracketAccess()
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def entries(): Iterator[EntrySet[A]]

    Permalink

    Returns an iterator allowing to go through all key/value pairs contained in this object

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def forEach(callback: Function): Unit

    Permalink

    The forEach() method of the NodeList interface calls the callback given in parameter once for each value pair in the list, in insertion order.

  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  17. def item(index: Int): A

    Permalink

    Returns an item in the list by its index, or null if the index is out-of-bounds; can be used as an alternative to simply accessing nodeList[idx] (which instead returns undefined when idx is out-of-bounds).

    Returns an item in the list by its index, or null if the index is out-of-bounds; can be used as an alternative to simply accessing nodeList[idx] (which instead returns undefined when idx is out-of-bounds).

    returns

    an item in the list by its index

  18. def keys(): Iterator[Int]

    Permalink

    The NodeList.keys() method returns an iterator allowing to go through all keys contained in this object.

    The NodeList.keys() method returns an iterator allowing to go through all keys contained in this object. The keys are unsigned integer.

  19. def length: Int

    Permalink

    Returns the length of the list

    Returns the length of the list

    returns

    the length of the list

    Definition Classes
    NodeList → JsCollection
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. def update(index: Int, value: A): Unit

    Permalink

    Set the element at the given index.

    Set the element at the given index.

    index

    the position of the Node to be set.

    value

    the value to set.

    Annotations
    @JSBracketAccess()
  28. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  29. def values(): Iterator[A]

    Permalink

    The NodeList.values() method returns an iterator allowing to go through all values contained in this object.

    The NodeList.values() method returns an iterator allowing to go through all values contained in this object. The values are Node objects.

  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from JsCollection[A]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped