org.scalajs.dom

HTMLDocument

class HTMLDocument extends Document

Annotations
@RawJSType()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. HTMLDocument
  2. Document
  3. ParentNode
  4. DocumentEvent
  5. NodeSelector
  6. Node
  7. EventTarget
  8. Object
  9. Any
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HTMLDocument()

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def URL: String

    Returns a string containing the URL of the current document.

    Returns a string containing the URL of the current document.

    MDN

  5. def activeElement: Element

    Returns the currently focused element, that is, the element that will get keystroke events if the user types any.

    Returns the currently focused element, that is, the element that will get keystroke events if the user types any. This attribute is read only.

    MDN

  6. def addEventListener(type: String, listener: Function1[Event, _], useCapture: Boolean = js.native): Unit

    The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on.

    The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).

    MDN

    Definition Classes
    EventTarget
  7. def adoptNode(source: Node): Node

    Adopts a node from an external document.

    Adopts a node from an external document. The node and its subtree is removed from the document it's in (if any), and its ownerDocument is changed to the current document. The node can then be inserted into the current document.

    MDN

    Definition Classes
    Document
  8. def anchors: HTMLCollection

    anchors returns a list of all of the anchors in the document.

    anchors returns a list of all of the anchors in the document.

    MDN

  9. def appendChild(newChild: Node): Node

    Adds a node to the end of the list of children of a specified parent node.

    Adds a node to the end of the list of children of a specified parent node. If the node already exists it is removed from current parent node, then added to new parent node.

    MDN

    Definition Classes
    Node
  10. def applets: HTMLCollection

    applets returns an ordered list of the applets within a document.

    applets returns an ordered list of the applets within a document.

    MDN

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def attributes: NamedNodeMap

    .attributes is a collection of all attribute nodes registered to the specified node.

    .attributes is a collection of all attribute nodes registered to the specified node. It is a NamedNodeMap,not an Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, attribute is a key value pair of strings that represents any information regarding that node; it cannot hold Object. Attribute can hold additional data/information that is required while processing custom JavaScript. There are many predefined attributes for different nodes used for binding events, validations, and specifying layout informations that are handled by browser (may vary from browser to browser).  

    MDN

    Definition Classes
    Node
  13. def body: HTMLElement

    Returns the <body> or <frameset> node of the current document, or null if no such element exists.

    Returns the <body> or <frameset> node of the current document, or null if no such element exists.

    MDN

  14. def characterSet: String

    Returns the character encoding of the current document.

    Returns the character encoding of the current document.

    MDN

    Definition Classes
    Document
  15. def childElementCount: Int

    Returns an unsigned long giving the amount of children that the object has.

    Returns an unsigned long giving the amount of children that the object has.

    MDN

    Definition Classes
    ParentNode
  16. def childNodes: NodeList

    Returns a live NodeList containing all the children of this node.

    Returns a live NodeList containing all the children of this node. NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.

    MDN

    Definition Classes
    Node
  17. def children: HTMLCollection

    Returns a live HTMLCollection containing all objects of type Element that are children of the object.

    Returns a live HTMLCollection containing all objects of type Element that are children of the object.

    MDN

    Definition Classes
    ParentNode
  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def cloneNode(deep: Boolean = js.native): Node

    Clone a Node, and optionally, all of its contents.

    Clone a Node, and optionally, all of its contents. By default, it clones the content of the node.

    MDN

    Definition Classes
    Node
  20. def close(): Unit

    The document.close() method finishes writing to a document, opened with document.open().

    The document.close() method finishes writing to a document, opened with document.open().

    MDN

  21. def compareDocumentPosition(other: Node): Int

    Compares the position of the current node against another node in any other document.

    Compares the position of the current node against another node in any other document.

    MDN

    Definition Classes
    Node
  22. def compatMode: String

    Indicates whether the document is rendered in Quirks mode or Strict mode.

    Indicates whether the document is rendered in Quirks mode or Strict mode.

    MDN

  23. var cookie: String

    Returns a semicolon-separated list of the cookies for that document or sets a single cookie.

    Returns a semicolon-separated list of the cookies for that document or sets a single cookie.

    MDN

  24. def createAttribute(name: String): Attr

    createAttribute creates a new attribute node, and returns it.

    createAttribute creates a new attribute node, and returns it.

    MDN

    Definition Classes
    Document
  25. def createAttributeNS(namespaceURI: String, qualifiedName: String): Attr

    Creates a new attribute node in a given namespace and returns it.

    Creates a new attribute node in a given namespace and returns it.

    MDN

    Definition Classes
    Document
  26. def createCDATASection(data: String): CDATASection

    createCDATASection() creates a new CDATA section node, and returns it.

    createCDATASection() creates a new CDATA section node, and returns it.

    MDN

    Definition Classes
    Document
  27. def createComment(data: String): Comment

    createComment() creates a new comment node, and returns it.

    createComment() creates a new comment node, and returns it.

    MDN

    Definition Classes
    Document
  28. def createDocumentFragment(): DocumentFragment

    Creates a new empty DocumentFragment.

    Creates a new empty DocumentFragment.

    MDN

    Definition Classes
    Document
  29. def createElement(tagName: String): Element

    In an HTML document creates the specified HTML element or HTMLUnknownElement if the element is not known.

    In an HTML document creates the specified HTML element or HTMLUnknownElement if the element is not known. In a XUL document creates the specified XUL element. In other documents creates an element with a null namespaceURI.

    MDN

    Definition Classes
    Document
  30. def createElementNS(namespaceURI: String, qualifiedName: String): Element

    Creates an element with the specified namespace URI and qualified name.

    Creates an element with the specified namespace URI and qualified name.

    MDN

    Definition Classes
    Document
  31. def createEvent(eventInterface: String): Event

    Definition Classes
    DocumentEvent
  32. def createNSResolver(node: Node): XPathNSResolver

    Creates an XPathNSResolver which resolves namespaces with respect to the definitions in scope for a specified node.

    Creates an XPathNSResolver which resolves namespaces with respect to the definitions in scope for a specified node.

    MDN.

    Definition Classes
    Document
  33. def createNodeIterator(root: Node, whatToShow: Int, filter: NodeFilter, entityReferenceExpansion: Boolean): NodeIterator

    Supported in FF 3.5+, Chrome 1+, Opera 9+, Safari 3+, IE9+

    Supported in FF 3.5+, Chrome 1+, Opera 9+, Safari 3+, IE9+

    MDN

    Definition Classes
    Document
  34. def createProcessingInstruction(target: String, data: String): ProcessingInstruction

    createProcessingInstruction() creates a new processing instruction node, and returns it.

    createProcessingInstruction() creates a new processing instruction node, and returns it.

    MDN

    Definition Classes
    Document
  35. def createRange(): Range

    Once a Range is created, you need to set its boundary points before you can make use of most of its methods.

    Once a Range is created, you need to set its boundary points before you can make use of most of its methods.

    MDN

    Definition Classes
    Document
  36. def createStyleSheet(href: String = js.native, index: Int = js.native): CSSStyleSheet

    Definition Classes
    Document
  37. def createTextNode(data: String): Text

    Definition Classes
    Document
  38. def createTreeWalker(root: Node, whatToShow: Int, filter: NodeFilter, entityReferenceExpansion: Boolean): TreeWalker

    The Document.createTreeWalker() creator method returns a newly created TreeWalker object.

    The Document.createTreeWalker() creator method returns a newly created TreeWalker object.

    MDN

    Definition Classes
    Document
  39. def defaultView: Window

    In browsers returns the window object associated with the document or null if none available.

    In browsers returns the window object associated with the document or null if none available.

    MDN

  40. var designMode: String

    Can be used to make any document editable, for example in a <iframe />:

    Can be used to make any document editable, for example in a <iframe />:

    MDN

  41. var dir: String

    The Document.dir property is a DOMString representing the directionality of the text of the document, whether left to right (default) or right to left.

    The Document.dir property is a DOMString representing the directionality of the text of the document, whether left to right (default) or right to left. Possible values are 'rtl', right to left, and 'ltr', left to right.

    MDN

  42. def dispatchEvent(evt: Event): Boolean

    Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order.

    Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) apply to events dispatched manually with dispatchEvent().

    MDN

    Definition Classes
    EventTarget
  43. def doctype: DocumentType

    Returns the Document Type Declaration (DTD) associated with current document.

    Returns the Document Type Declaration (DTD) associated with current document. The returned object implements the DocumentType interface. Use DOMImplementation.createDocumentType() to create a DocumentType.

    MDN

    Definition Classes
    Document
  44. def documentElement: Element

    Returns the Element that is the root element of the document (for example, the <html> element for HTML documents).

    Returns the Element that is the root element of the document (for example, the <html> element for HTML documents).

    MDN

    Definition Classes
    Document
  45. def documentURI: String

    Definition Classes
    Document
  46. var domain: String

    Gets/sets the domain portion of the origin of the current document, as used by the same origin policy.

    Gets/sets the domain portion of the origin of the current document, as used by the same origin policy.

    MDN

  47. def elementFromPoint(x: Double, y: Double): Element

    Returns the element from the document whose elementFromPoint method is being called which is the topmost element which lies under the given point.

    Returns the element from the document whose elementFromPoint method is being called which is the topmost element which lies under the given point.  To get an element, specify the point via coordinates, in CSS pixels, relative to the upper-left-most point in the window or frame containing the document.

    MDN

    Definition Classes
    Document
  48. def embeds: HTMLCollection

    Returns a list of the embedded <embed> elements within the current document.

    Returns a list of the embedded <embed> elements within the current document.

    MDN

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

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

    Definition Classes
    AnyRef → Any
  51. def evaluate(xpathExpression: String, contextNode: Node, namespaceResolver: Function1[String, String], resultType: Int, result: XPathResult): XPathResult

    Returns an XPathResult based on an XPath expression and other given parameters.

    Returns an XPathResult based on an XPath expression and other given parameters.

    MDN

    xpathExpression

    is a string representing the XPath to be evaluated.

    contextNode

    specifies the context node for the query (see the [http://www.w3.org/TR/xpath XPath specification). It's common to pass document as the context node.

    namespaceResolver

    is a function that will be passed any namespace prefixes and should return a string representing the namespace URI associated with that prefix. It will be used to resolve prefixes within the XPath itself, so that they can be matched with the document. null is common for HTML documents or when no namespace prefixes are used.

    resultType

    is an integer that corresponds to the type of result XPathResult to return. Use named constant properties, such as XPathResult.ANY_TYPE, of the XPathResult constructor, which correspond to integers from 0 to 9.

    result

    is an existing XPathResult to use for the results. null is the most common and will create a new XPathResult

    Definition Classes
    Document
  52. def evaluate(xpathExpression: String, contextNode: Node, namespaceResolver: XPathNSResolver, resultType: Int, result: XPathResult): XPathResult

    Returns an XPathResult based on an XPath expression and other given parameters.

    Returns an XPathResult based on an XPath expression and other given parameters.

    MDN

    xpathExpression

    is a string representing the XPath to be evaluated.

    contextNode

    specifies the context node for the query (see the http://www.w3.org/TR/xpath XPath specification). It's common to pass document as the context node.

    namespaceResolver

    an XPathNSResolver

    resultType

    is an integer that corresponds to the type of result XPathResult to return. Use named constant properties, such as XPathResult.ANY_TYPE, of the XPathResult constructor, which correspond to integers from 0 to 9.

    result

    is an existing XPathResult to use for the results. null is the most common and will create a new XPathResult

    Definition Classes
    Document
  53. def execCommand(commandId: String, showUI: Boolean = js.native, value: Any = js.native): Boolean

    When an HTML document has been switched to designMode, the document object exposes the execCommand method which allows one to run commands to manipulate the contents of the editable region.

    When an HTML document has been switched to designMode, the document object exposes the execCommand method which allows one to run commands to manipulate the contents of the editable region. Most commands affect the document's selection (bold, italics, etc), while others insert new elements (adding a link) or affect an entire line (indenting). When using contentEditable, calling execCommand will affect the currently active editable element.

    MDN

  54. def execCommandShowHelp(commandId: String): Boolean

    This method never did anything and always threw an exception, so it was removed in Gecko 14.0 (Firefox 14.0 / Thunderbird 14.0 / SeaMonkey 2.11).

    This method never did anything and always threw an exception, so it was removed in Gecko 14.0 (Firefox 14.0 / Thunderbird 14.0 / SeaMonkey 2.11).

    MDN

  55. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  56. def fireEvent(eventName: String, eventObj: Any = js.native): Boolean

  57. def firstChild: Node

    Returns the node's first child in the tree, or null if the node is childless.

    Returns the node's first child in the tree, or null if the node is childless. If the node is a Document, it returns the first node in the list of its direct children.

    MDN

    Definition Classes
    Node
  58. def firstElementChild: Element

    Returns the Element that is the first child of the object, or null if there is none.

    Returns the Element that is the first child of the object, or null if there is none.

    MDN

    Definition Classes
    ParentNode
  59. def focus(): Unit

  60. def forms: HTMLCollection

    forms returns a collection (an HTMLCollection) of the form elements within the current document.

    forms returns a collection (an HTMLCollection) of the form elements within the current document.

    MDN

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

    Definition Classes
    AnyRef → Any
  62. def getElementById(elementId: String): Element

    Returns an object reference to the identified element.

    Returns an object reference to the identified element.

    MDN

    Definition Classes
    Document
  63. def getElementsByClassName(classNames: String): NodeList

    Returns a set of elements which have all the given class names.

    Returns a set of elements which have all the given class names. When called on the document object, the complete document is searched, including the root node. You may also call getElementsByClassName on any element; it will return only elements which are descendants of the specified root element with the given class names.

    MDN

    Definition Classes
    Document
  64. def getElementsByName(elementName: String): NodeList

    Returns a list of elements with a given name in the (X)HTML document.

    Returns a list of elements with a given name in the (X)HTML document.

    MDN

    Definition Classes
    Document
  65. def getElementsByTagName(tagname: String): NodeList

    Returns a HTMLCollection of elements with the given tag name.

    Returns a HTMLCollection of elements with the given tag name. The complete document is searched, including the root node. The returned HTMLCollection is live, meaning that it updates itself automatically to stay in sync with the DOM tree without having to call document.getElementsByTagName again.

    MDN

    Definition Classes
    Document
  66. def getElementsByTagNameNS(namespaceURI: String, localName: String): NodeList

    Returns a list of elements with the given tag name belonging to the given namespace.

    Returns a list of elements with the given tag name belonging to the given namespace. The complete document is searched, including the root node.

    MDN

    Definition Classes
    Document
  67. def getSelection(): Selection

    The DOM getSelection() method is available on the Window and Document interfaces.

    The DOM getSelection() method is available on the Window and Document interfaces. See window.getSelection() for details.

    MDN

  68. def hasAttributes(): Boolean

    hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or not.

    hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or not.

    MDN

    Definition Classes
    Node
  69. def hasChildNodes(): Boolean

    hasChildNodes returns a Boolean value indicating whether the current Node has child nodes or not.

    hasChildNodes returns a Boolean value indicating whether the current Node has child nodes or not.

    MDN

    Definition Classes
    Node
  70. def hasFocus(): Boolean

    Returns a Boolean value indicating whether the document or any element inside the document has focus.

    Returns a Boolean value indicating whether the document or any element inside the document has focus. This method can be used to determine whether the active element in a document has focus.

    MDN

  71. def hasOwnProperty(v: String): Boolean

    Definition Classes
    Object
  72. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  73. def head: HTMLHeadElement

    Returns the <head> element of the current document.

    Returns the <head> element of the current document. If there are more than one <head> elements, the first one is returned.

    MDN

  74. def images: HTMLCollection

    document.images returns a collection of the images in the current HTML document.

    document.images returns a collection of the images in the current HTML document.

    MDN

  75. def implementation: DOMImplementation

    Returns a DOMImplementation object associated with the current document.

    Returns a DOMImplementation object associated with the current document.

    MDN

    Definition Classes
    Document
  76. def importNode(importedNode: Node, deep: Boolean): Node

    Creates a copy of a node from an external document that can be inserted into the current document.

    Creates a copy of a node from an external document that can be inserted into the current document.

    MDN

    Definition Classes
    Document
  77. def insertBefore(newChild: Node, refChild: Node = js.native): Node

    Inserts the first Node given in a parameter immediately before the second, child of this element, Node.

    Inserts the first Node given in a parameter immediately before the second, child of this element, Node.

    MDN

    Definition Classes
    Node
  78. def isDefaultNamespace(namespaceURI: String): Boolean

    isDefaultNamespace accepts a namespace URI as an argument and returns true if the namespace is the default namespace on the given node or false if not.

    isDefaultNamespace accepts a namespace URI as an argument and returns true if the namespace is the default namespace on the given node or false if not.

    MDN

    Definition Classes
    Node
  79. def isEqualNode(arg: Node): Boolean

    If #targetElm is first div element in document, "true" will be displayed.

    If #targetElm is first div element in document, "true" will be displayed.

    MDN

    Definition Classes
    Node
  80. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    Object
  82. def isSameNode(other: Node): Boolean

    Tests whether two nodes are the same, that is they reference the same object.

    Tests whether two nodes are the same, that is they reference the same object.

    MDN

    Definition Classes
    Node
  83. def isSupported(feature: String, version: String): Boolean

    The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.

    The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.

    MDN

    Definition Classes
    Node
  84. def lastChild: Node

    Returns a Node representing the last direct child node of the node, or null if the node has no child.

    Returns a Node representing the last direct child node of the node, or null if the node has no child.

    MDN

    Definition Classes
    Node
  85. def lastElementChild: Element

    Returns the Element that is the last child of the object, or null if there is none.

    Returns the Element that is the last child of the object, or null if there is none.

    MDN

    Definition Classes
    ParentNode
  86. def lastModified: String

    Returns a string containing the date and time on which the current document was last modified.

    Returns a string containing the date and time on which the current document was last modified.

    MDN

    Definition Classes
    Document
  87. def links: HTMLCollection

    The links property returns a collection of all AREA elements and anchor elements in a document with a value for the href attribute.

    The links property returns a collection of all AREA elements and anchor elements in a document with a value for the href attribute.

    MDN

  88. def localName: String

    Returns a DOMString representing the local part of the qualified name of an element.

    Returns a DOMString representing the local part of the qualified name of an element. In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML. Though the specification requires localName to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

    MDN

    Definition Classes
    Node
  89. var location: Location

    The Document.location property returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and load another URL.

    The Document.location property returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and load another URL.

    MDN

  90. def lookupNamespaceURI(prefix: String): String

    Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not).

    Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not). Supplying null for the prefix will return the default namespace.

    MDN

    Definition Classes
    Node
  91. def lookupPrefix(namespaceURI: String): String

    Returns the prefix for a given namespaceURI if present, and null if not.

    Returns the prefix for a given namespaceURI if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.

    MDN

    Definition Classes
    Node
  92. def namespaceURI: String

    The namespace URI of this node, or null if it is no namespace.

    The namespace URI of this node, or null if it is no namespace. In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the http://www.w3.org/1999/xhtml namespace in both HTML and XML trees. Though the specification requires namespaceURI to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

    MDN

    Definition Classes
    Node
  93. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  94. def nextSibling: Node

    Returns the node immediately following the specified one in its parent's childNodes list, or null if the specified node is the last node in that list.

    Returns the node immediately following the specified one in its parent's childNodes list, or null if the specified node is the last node in that list.

    MDN

    Definition Classes
    Node
  95. def nodeName: String

    Returns a DOMString containing the name of the Node.

    Returns a DOMString containing the name of the Node. The structure of the name will differ with the name type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.

    MDN

    Definition Classes
    Node
  96. def nodeType: Int

    The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.

    The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.

    MDN

    Definition Classes
    Node
  97. def nodeValue: String

    Is a DOMString representing the value of an object.

    Is a DOMString representing the value of an object. For most Node type, this returns null and any set operation is ignored. For nodes of type TEXT_NODE (Text objects), COMMENT_NODE (Comment objects), and PROCESSING_INSTRUCTION_NODE (ProcessingInstruction objects), the value corresponds to the text data contained in the object.

    MDN

    Definition Classes
    Node
  98. def normalize(): Unit

    Puts the specified node and all of its subtree into a "normalized" form.

    Puts the specified node and all of its subtree into a "normalized" form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.

    MDN

    Definition Classes
    Node
  99. final def notify(): Unit

    Definition Classes
    AnyRef
  100. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  101. var onabort: Function1[UIEvent, _]

  102. var onactivate: Function1[UIEvent, _]

  103. var onbeforeactivate: Function1[UIEvent, _]

  104. var onbeforedeactivate: Function1[UIEvent, _]

  105. var onblur: Function1[FocusEvent, _]

  106. var oncanplay: Function1[Event, _]

  107. var oncanplaythrough: Function1[Event, _]

  108. var onchange: Function1[Event, _]

    The onchange property sets and returns the event handler for the change event.

    The onchange property sets and returns the event handler for the change event.

    MDN

  109. var onclick: Function1[MouseEvent, _]

    The onclick property returns the onClick event handler code on the current element.

    The onclick property returns the onClick event handler code on the current element.

    MDN

  110. var oncontextmenu: Function1[MouseEvent, _]

  111. var ondblclick: Function1[MouseEvent, _]

  112. var ondeactivate: Function1[UIEvent, _]

  113. var ondrag: Function1[DragEvent, _]

    Called periodically throughout the drag and drop operation.

    Called periodically throughout the drag and drop operation.

    MDN

  114. var ondragend: Function1[DragEvent, _]

    Called when the drag operation is finished.

    Called when the drag operation is finished.

    MDN

  115. var ondragenter: Function1[DragEvent, _]

    Called for an element when the mouse pointer first moves over the element while something is being dragged.

    Called for an element when the mouse pointer first moves over the element while something is being dragged. This might be used to change the appearance of the element to indicate to the user that the object can be dropped on it.

    MDN

  116. var ondragleave: Function1[DragEvent, _]

  117. var ondragover: Function1[DragEvent, _]

    This event handler is called for an element when something is being dragged over top of it.

    This event handler is called for an element when something is being dragged over top of it. If the object can be dropped on the element, the drag session should be notified.

    MDN

  118. var ondragstart: Function1[DragEvent, _]

    An alias for ondraggesture; this is the HTML 5 spec name for the event and may be used in HTML or XUL; however, for backward compatibility with older versions of Firefox, you may wish to continue using ondraggesture in XUL.

    An alias for ondraggesture; this is the HTML 5 spec name for the event and may be used in HTML or XUL; however, for backward compatibility with older versions of Firefox, you may wish to continue using ondraggesture in XUL.

    MDN

  119. var ondrop: Function1[DragEvent, _]

  120. var ondurationchange: Function1[Event, _]

  121. var onemptied: Function1[Event, _]

  122. var onended: Function1[Event, _]

  123. var onerror: Function1[Event, _]

  124. var onfocus: Function1[FocusEvent, _]

  125. var onfocusin: Function1[FocusEvent, _]

  126. var onfocusout: Function1[FocusEvent, _]

  127. var onhelp: Function1[Event, _]

  128. var oninput: Function1[Event, _]

  129. var onkeydown: Function1[KeyboardEvent, _]

    The keydown event is raised when the user presses a keyboard key.

    The keydown event is raised when the user presses a keyboard key.

    MDN

  130. var onkeypress: Function1[KeyboardEvent, _]

  131. var onkeyup: Function1[KeyboardEvent, _]

    The keyup event is raised when the user releases a key that's been pressed.

    The keyup event is raised when the user releases a key that's been pressed.

    MDN

  132. var onload: Function1[Event, _]

  133. var onloadeddata: Function1[Event, _]

  134. var onloadedmetadata: Function1[Event, _]

  135. var onloadstart: Function1[Event, _]

  136. var onmousedown: Function1[MouseEvent, _]

    The mousedown event is raised when the user presses the mouse button.

    The mousedown event is raised when the user presses the mouse button.

    MDN

  137. var onmousemove: Function1[MouseEvent, _]

  138. var onmouseout: Function1[MouseEvent, _]

    The mouseout event is raised when the mouse leaves an element (e.g, when the mouse moves off of an image in the web page, the mouseout event is raised for that image element).

    The mouseout event is raised when the mouse leaves an element (e.g, when the mouse moves off of an image in the web page, the mouseout event is raised for that image element).

    MDN

  139. var onmouseover: Function1[MouseEvent, _]

    The mouseover event is raised when the user moves the mouse over a particular element.

    The mouseover event is raised when the user moves the mouse over a particular element.

    MDN

  140. var onmouseup: Function1[MouseEvent, _]

  141. var onmousewheel: Function1[WheelEvent, _]

  142. var onpause: Function1[Event, _]

  143. var onplay: Function1[Event, _]

  144. var onplaying: Function1[Event, _]

  145. var onprogress: Function1[Any, _]

  146. var onratechange: Function1[Event, _]

  147. var onreadystatechange: Function1[Event, _]

    Returns the event handling code for the readystatechange event.

    Returns the event handling code for the readystatechange event.

    MDN

  148. var onreset: Function1[Event, _]

  149. var onscroll: Function1[UIEvent, _]

  150. var onseeked: Function1[Event, _]

  151. var onseeking: Function1[Event, _]

  152. var onselect: Function1[UIEvent, _]

  153. var onselectionchange: Function1[Event, _]

  154. var onselectstart: Function1[Event, _]

  155. var onstalled: Function1[Event, _]

  156. var onstop: Function1[Event, _]

  157. var onstoragecommit: Function1[StorageEvent, _]

  158. var onsubmit: Function1[Event, _]

    The submit event is raised when the user clicks a submit button in a form

    The submit event is raised when the user clicks a submit button in a form

    MDN

  159. var onsuspend: Function1[Event, _]

  160. var ontimeupdate: Function1[Event, _]

  161. var onvolumechange: Function1[Event, _]

  162. var onwaiting: Function1[Event, _]

  163. def open(url: String = js.native, name: String = js.native, features: String = js.native, replace: Boolean = js.native): Dynamic

    The document.open() method opens a document for writing.

    The document.open() method opens a document for writing.

    MDN

  164. def ownerDocument: Document

    Returns the Document that this node belongs to.

    Returns the Document that this node belongs to. If no document is associated with it, returns null.

    MDN

    Definition Classes
    Node
  165. def parentNode: Node

    Returns a Node that is the parent of this node.

    Returns a Node that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null.

    MDN

    Definition Classes
    Node
  166. def plugins: HTMLCollection

    Returns an HTMLCollection object containing one or more HTMLEmbedElements or null which represent the <embed> elements in the current document.

    Returns an HTMLCollection object containing one or more HTMLEmbedElements or null which represent the <embed> elements in the current document.

    MDN

  167. var prefix: String

    Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.

    Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified. Though the specification requires localName to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

    MDN

    Definition Classes
    Node
  168. def previousSibling: Node

    Returns the node immediately preceding the specified one in its parent's childNodes list, null if the specified node is the first in that list.

    Returns the node immediately preceding the specified one in its parent's childNodes list, null if the specified node is the first in that list.

    MDN

    Definition Classes
    Node
  169. def propertyIsEnumerable(v: String): Boolean

    Definition Classes
    Object
  170. def queryCommandEnabled(commandId: String): Boolean

    Returns true if the formating command can be executed on the current range.

    Returns true if the formating command can be executed on the current range.

    MDN

  171. def queryCommandIndeterm(commandId: String): Boolean

    Returns true if the formating command is in an indeterminate state on the current range.

    Returns true if the formating command is in an indeterminate state on the current range.

    MDN

  172. def queryCommandState(commandId: String): Boolean

    Returns true if the formating command has been executed on the current range.

    Returns true if the formating command has been executed on the current range.

    MDN

  173. def queryCommandSupported(commandId: String): Boolean

    Reports whether or not the specified editor query command is supported by the browser.

    Reports whether or not the specified editor query command is supported by the browser.

    MDN

  174. def queryCommandText(commandId: String): String

    This method never did anything but throw an exception, and was removed in Gecko 14.0 (Firefox 14.0 / Thunderbird 14.0 / SeaMonkey 2.11).

    This method never did anything but throw an exception, and was removed in Gecko 14.0 (Firefox 14.0 / Thunderbird 14.0 / SeaMonkey 2.11).

    MDN

  175. def queryCommandValue(commandId: String): String

    Returns the current value of the current range for a formating command.

    Returns the current value of the current range for a formating command.

    MDN

  176. def querySelector(selectors: String): Element

    Returns the first element within the document (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.

    Returns the first element within the document (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.

    MDN

    Definition Classes
    NodeSelector
  177. def querySelectorAll(selectors: String): NodeList

    Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors.

    Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors.

    MDN

    Definition Classes
    NodeSelector
  178. var readyState: String

    Returns "loading" while the document is loading, "interactive" once it is finished parsing but still loading sub-resources, and "complete" once it has loaded.

    Returns "loading" while the document is loading, "interactive" once it is finished parsing but still loading sub-resources, and "complete" once it has loaded.

    MDN

  179. def referrer: String

    Returns the URI of the page that linked to this page.

    Returns the URI of the page that linked to this page.

    MDN

  180. def removeChild(oldChild: Node): Node

    Removes a child node from the current element, which must be a child of the current node.

    Removes a child node from the current element, which must be a child of the current node.

    MDN

    Definition Classes
    Node
  181. def removeEventListener(type: String, listener: Function1[Event, _], useCapture: Boolean = js.native): Unit

    Removes the event listener previously registered with EventTarget.addEventListener.

    Removes the event listener previously registered with EventTarget.addEventListener.

    MDN

    Definition Classes
    EventTarget
  182. def replaceChild(newChild: Node, oldChild: Node): Node

    Replaces one child Node of the current one with the second one given in parameter.

    Replaces one child Node of the current one with the second one given in parameter.

    MDN

    Definition Classes
    Node
  183. def styleSheets: StyleSheetList

    Returns a list of StyleSheet objects for stylesheets explicitly linked into or embedded in a document.

    Returns a list of StyleSheet objects for stylesheets explicitly linked into or embedded in a document.

    MDN

    Definition Classes
    Document
  184. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  185. var textContent: String

    Is a DOMString representing the textual content of an element and all its descendants.

    Is a DOMString representing the textual content of an element and all its descendants.

    MDN

    Definition Classes
    Node
  186. var title: String

    Returns the title of the current document.

    Returns the title of the current document.

    MDN

  187. def toLocaleString(): String

    Definition Classes
    Object
  188. def toString(): String

    Definition Classes
    AnyRef → Any
  189. var uniqueID: String

  190. def updateSettings(): Unit

  191. def valueOf(): Any

    Definition Classes
    Object
  192. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  195. def write(content: String*): Unit

    Writes a string of text to a document stream opened by document.open().

    Writes a string of text to a document stream opened by document.open().

    MDN

  196. def writeln(content: String*): Unit

    Writes a string of text followed by a newline character to a document.

    Writes a string of text followed by a newline character to a document.

    MDN

Deprecated Value Members

  1. var alinkColor: String

    color is a string containing the name of the color (e.g., "blue", "darkblue", etc.) or the hexadecimal value of the color (e.g., #0000FF)

    color is a string containing the name of the color (e.g., "blue", "darkblue", etc.) or the hexadecimal value of the color (e.g., #0000FF)

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version DOM Level 2) Use the CSS style color with the pseudo-class :active instead.

  2. var bgColor: String

    The default value for this property in Mozilla Firefox is white (#ffffff in hexadecimal).

    The default value for this property in Mozilla Firefox is white (#ffffff in hexadecimal).

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version DOM Level 2) Use the CSS style background-color instead.

  3. var fgColor: String

    fgColor gets/sets the foreground color, or text color, of the current document.

    fgColor gets/sets the foreground color, or text color, of the current document.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version DOM Level 2) Use the CSS style color instead.

  4. var linkColor: String

    linkColor gets/sets the color of links within the document.

    linkColor gets/sets the color of links within the document.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version DOM Level 2) Use the CSS style color with the pseudo-class :link instead.

  5. def releaseCapture(): Unit

    Releases mouse capture if it's currently enabled on an element within this document.

    Releases mouse capture if it's currently enabled on an element within this document. Enabling mouse capture on an element is done by calling element.setCapture().

    MDN

    Definition Classes
    Document
    Annotations
    @deprecated
    Deprecated

    (Since version forever) Non standard.

  6. var vlinkColor: String

    Annotations
    @deprecated
    Deprecated

    (Since version DOM Level 2) Use the CSS style color with the pseudo-class :visited instead.

  7. def xmlStandalone: Boolean

    Returns true if the XML declaration specifies the document is standalone (e.g., An external part of the DTD affects the document's content), else false.

    Returns true if the XML declaration specifies the document is standalone (e.g., An external part of the DTD affects the document's content), else false.

    MDN

    Definition Classes
    Document
    Annotations
    @deprecated
    Deprecated

    (Since version forever) Not supported by all browsers

Inherited from Document

Inherited from ParentNode

Inherited from DocumentEvent

Inherited from NodeSelector

Inherited from Node

Inherited from EventTarget

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped