Package

io.scalajs.dom

collection

Permalink

package collection

Visibility
  1. Public
  2. All

Type Members

  1. class Arguments[A] extends Object with JsCollection[A]

    Permalink

    The arguments object is an Array-like object corresponding to the arguments passed to a function.

    The arguments object is an Array-like object corresponding to the arguments passed to a function.

    The arguments object is a local variable available within all functions. You can refer to a function's arguments within the function by using the arguments object. This object contains an entry for each argument passed to the function, the first entry's index starting at 0.

    Annotations
    @RawJSType() @native()
    See also

    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments

  2. trait DOMStringMap extends Object

    Permalink

    DOMStringMap

    DOMStringMap

    Annotations
    @RawJSType() @native()
    See also

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

  3. trait HTMLCollection[A] extends Object with JsCollection[A]

    Permalink

    The HTMLCollection interface represents a generic collection (array-like object similar to arguments) of elements (in document order) and offers methods and properties for selecting from the list.

    The HTMLCollection interface represents a generic collection (array-like object similar to arguments) of elements (in document order) and offers methods and properties for selecting from the list.

    Annotations
    @RawJSType() @native()
    See also

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

  4. class NamedNodeMap[A] extends Object with JsCollection[A]

    Permalink

    The NamedNodeMap interface represents a collection of Attr objects.

    The NamedNodeMap interface represents a collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.

    A NamedNodeMap object is live and will thus be auto-updated if changes are made to its contents internally or elsewhere.

    Annotations
    @RawJSType() @native()
    See also

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

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

    Permalink

    JavaScript HTML DOM Node List

    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

Value Members

  1. object NamedNodeMap

    Permalink

    NamedNodeMap Companion

  2. object NodeList

    Permalink

    NodeList Companion

Ungrouped