Class

org.scalajs.dom

HTMLDocument

Related Doc: package dom

Permalink

abstract class HTMLDocument extends Document

Annotations
@JSType() @native() @JSGlobal()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HTMLDocument
  2. Document
  3. PageVisibility
  4. ParentNode
  5. DocumentEvent
  6. NodeSelector
  7. Node
  8. EventTarget
  9. Object
  10. Any
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HTMLDocument()

    Permalink

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 URL: String

    Permalink

    Returns a string containing the URL of the current document.

  5. def activeElement: Element

    Permalink

    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.

  6. def addEventListener[T <: Event](type: String, listener: Function1[T, _], options: EventListenerOptions): Unit

    Permalink

    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).

    This implementation accepts a settings object of type EventListenerOptions.

    Definition Classes
    EventTarget
  7. def addEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean = js.native): Unit

    Permalink

    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).

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

    Permalink

    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.

    Definition Classes
    Document
  9. def anchors: HTMLCollection[Element]

    Permalink

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

  10. def appendChild(newChild: Node): Node

    Permalink

    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.

    Definition Classes
    Node
  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def attributes: NamedNodeMap

    Permalink

    .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).

    Definition Classes
    Node
  13. def baseURI: String

    Permalink

    Returns the absolute base URL of this Node.

    Returns the absolute base URL of this Node.

    Definition Classes
    Node
  14. var body: HTMLElement

    Permalink

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

  15. def characterSet: String

    Permalink

    Returns the character encoding of the current document.

    Returns the character encoding of the current document.

    Definition Classes
    Document
  16. def childElementCount: Int

    Permalink

    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.

    Definition Classes
    ParentNode
  17. def childNodes: NodeList[Node]

    Permalink

    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.

    Definition Classes
    Node
  18. def children: HTMLCollection[Element]

    Permalink

    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.

    Definition Classes
    ParentNode
  19. def clone(): AnyRef

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

    Permalink

    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.

    Definition Classes
    Node
  21. def close(): Unit

    Permalink

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

  22. def compareDocumentPosition(other: Node): Int

    Permalink

    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.

    Definition Classes
    Node
  23. def compatMode: String

    Permalink

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

  24. def contains(otherNode: Node): Boolean

    Permalink

    Returns a Boolean value indicating whether a node is a descendant of a given node, i.e.

    Returns a Boolean value indicating whether a node is a descendant of a given node, i.e. the node itself, one of its direct children (childNodes), one of the children's direct children, and so on.

    Definition Classes
    Node
  25. var cookie: String

    Permalink

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

  26. def createAttribute(name: String): Attr

    Permalink

    createAttribute creates a new attribute node, and returns it.

    createAttribute creates a new attribute node, and returns it.

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

    Permalink

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

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

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

    Permalink

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

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

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

    Permalink

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

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

    Definition Classes
    Document
  30. def createDocumentFragment(): DocumentFragment

    Permalink

    Creates a new empty DocumentFragment.

    Creates a new empty DocumentFragment.

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

    Permalink

    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.

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

    Permalink

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

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

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

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

    Permalink

    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.

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

    Permalink

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

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

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

    Permalink

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

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

    Definition Classes
    Document
  37. def createRange(): Range

    Permalink

    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.

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

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

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

    Permalink

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

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

    Definition Classes
    Document
  41. def defaultView: Window

    Permalink

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

  42. var designMode: String

    Permalink

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

  43. var dir: String

    Permalink

    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.

  44. def dispatchEvent(evt: Event): Boolean

    Permalink

    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().

    Definition Classes
    EventTarget
  45. def doctype: DocumentType

    Permalink

    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.

    Definition Classes
    Document
  46. def documentElement: Element

    Permalink

    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).

    Definition Classes
    Document
  47. def documentURI: String

    Permalink
    Definition Classes
    Document
  48. var domain: String

    Permalink

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

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

    Permalink

    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.

    Definition Classes
    Document
  50. def embeds: HTMLCollection[Element]

    Permalink

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

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

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

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

    Permalink

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

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

    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
  54. def evaluate(xpathExpression: String, contextNode: Node, namespaceResolver: XPathNSResolver, resultType: Int, result: XPathResult): XPathResult

    Permalink

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

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

    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
  55. def execCommand(commandId: String, showUI: Boolean = js.native, value: Any = js.native): Boolean

    Permalink

    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.

  56. def execCommandShowHelp(commandId: String): Boolean

    Permalink

    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).

  57. def exitFullscreen(): Promise[Unit]

    Permalink

    The Document method exitFullscreen() requests that the element on this document which is currently being presented in full-screen mode be taken out of full-screen mode, restoring the previous state of the screen.

    The Document method exitFullscreen() requests that the element on this document which is currently being presented in full-screen mode be taken out of full-screen mode, restoring the previous state of the screen. This usually reverses the effects of a previous call to Element.requestFullscreen().

    The exception is if another element was already in full-screen mode when the current element was placed into full-screen mode using requestFullscreen(). In that case, the previous full-screen element is restored to full-screen status instead. In essence, a stack of full-screen elements is maintained.

    Definition Classes
    Document
  58. def exitPointerLock(): Unit

    Permalink

    The exitPointerLock asynchronously releases a pointer lock previously requested through Element.requestPointerLock.

    The exitPointerLock asynchronously releases a pointer lock previously requested through Element.requestPointerLock.

    To track the success or failure of the request, it is necessary to listen for the pointerlockchange and pointerlockerror events.

    Definition Classes
    Document
  59. def finalize(): Unit

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

    Permalink
  61. def firstChild: Node

    Permalink

    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.

    Definition Classes
    Node
  62. def firstElementChild: Element

    Permalink

    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.

    Definition Classes
    ParentNode
  63. def focus(): Unit

    Permalink
  64. def forms: HTMLCollection[Element]

    Permalink

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

  65. def fullscreenElement: Element

    Permalink

    The DocumentOrShadowRoot.fullscreenElement read-only property returns the Element that is currently being presented in full-screen mode in this document, or null if full-screen mode is not currently in use.

    The DocumentOrShadowRoot.fullscreenElement read-only property returns the Element that is currently being presented in full-screen mode in this document, or null if full-screen mode is not currently in use.

    Although this property is read-only, it will not throw if it is modified (even in strict mode); the setter is a no-operation and it will be ignored.

    Definition Classes
    Document
  66. def fullscreenEnabled: Boolean

    Permalink

    The read-only fullscreenEnabled property on the Document interface indicates whether or not full-screen mode is available.

    The read-only fullscreenEnabled property on the Document interface indicates whether or not full-screen mode is available. Full-screen mode is available only for a page that has no windowed plug-ins in any of its documents, and if all <iframe> elements which contain the document have their allowfullscreen attribute set.

    Definition Classes
    Document
  67. final def getClass(): Class[_]

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

    Permalink

    Returns an object reference to the identified element.

    Returns an object reference to the identified element.

    Definition Classes
    Document
  69. def getElementsByClassName(classNames: String): HTMLCollection[Element]

    Permalink

    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.

    Definition Classes
    Document
  70. def getElementsByName(elementName: String): NodeList[Node]

    Permalink

    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.

    Definition Classes
    Document
  71. def getElementsByTagName(name: String): HTMLCollection[Element]

    Permalink

    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.

    Definition Classes
    Document
  72. def getElementsByTagNameNS(namespaceURI: String, localName: String): HTMLCollection[Element]

    Permalink

    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.

    Definition Classes
    Document
  73. def getSelection(): Selection

    Permalink

    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.

  74. var gotpointercapture: Function1[PointerEvent, _]

    Permalink

    fired when an element receives pointer capture.

  75. def hasAttributes(): Boolean

    Permalink

    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.

    Definition Classes
    Node
  76. def hasChildNodes(): Boolean

    Permalink

    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.

    Definition Classes
    Node
  77. def hasFocus(): Boolean

    Permalink

    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.

  78. def hasOwnProperty(v: String): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  80. def head: HTMLHeadElement

    Permalink

    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.

  81. def hidden: Boolean

    Permalink

    Returns true if the page is in a state considered to be hidden to the user, and false otherwise.

    Returns true if the page is in a state considered to be hidden to the user, and false otherwise.

    Definition Classes
    PageVisibility
  82. def images: HTMLCollection[Element]

    Permalink

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

  83. def implementation: DOMImplementation

    Permalink

    Returns a DOMImplementation object associated with the current document.

    Returns a DOMImplementation object associated with the current document.

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

    Permalink

    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.

    Definition Classes
    Document
  85. var innerText: String

    Permalink

    Represents the "rendered" text content of a node and its descendants.

    Represents the "rendered" text content of a node and its descendants. As a getter, it approximates the text the user would get if they highlighted the contents of the element with the cursor and then copied to the clipboard.

    Definition Classes
    Node
  86. def insertBefore(newChild: Node, refChild: Node): Node

    Permalink

    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.

    Definition Classes
    Node
  87. def isConnected: Boolean

    Permalink

    True if this Node is connected to the Document context object (or ShadowRoot in the case of shadow DOM)

    True if this Node is connected to the Document context object (or ShadowRoot in the case of shadow DOM)

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

    Permalink

    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.

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

    Permalink

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

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

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

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

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

    Permalink

    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.

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

    Permalink

    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.

    Definition Classes
    Node
  94. def lastChild: Node

    Permalink

    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.

    Definition Classes
    Node
  95. def lastElementChild: Element

    Permalink

    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.

    Definition Classes
    ParentNode
  96. def lastModified: String

    Permalink

    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.

    Definition Classes
    Document
  97. def links: HTMLCollection[Element]

    Permalink

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

  98. def localName: String

    Permalink

    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.

    Definition Classes
    Node
  99. var location: Location

    Permalink

    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.

  100. def lookupNamespaceURI(prefix: String): String

    Permalink

    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.

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

    Permalink

    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.

    Definition Classes
    Node
  102. var lostpointercapture: Function1[PointerEvent, _]

    Permalink

    Fired after pointer capture is released for a pointer.

  103. def namespaceURI: String

    Permalink

    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.

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

    Permalink
    Definition Classes
    AnyRef
  105. def nextSibling: Node

    Permalink

    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.

    Definition Classes
    Node
  106. def nodeName: String

    Permalink

    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.

    Definition Classes
    Node
  107. def nodeType: Int

    Permalink

    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.

    Definition Classes
    Node
  108. var nodeValue: String

    Permalink

    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.

    Definition Classes
    Node
  109. def normalize(): Unit

    Permalink

    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.

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

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

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

    Permalink
  113. var onactivate: Function1[UIEvent, _]

    Permalink
  114. var onbeforeactivate: Function1[UIEvent, _]

    Permalink
  115. var onbeforedeactivate: Function1[UIEvent, _]

    Permalink
  116. var onblur: Function1[FocusEvent, _]

    Permalink
  117. var oncanplay: Function1[Event, _]

    Permalink
  118. var oncanplaythrough: Function1[Event, _]

    Permalink
  119. var onchange: Function1[Event, _]

    Permalink

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

  120. var onclick: Function1[MouseEvent, _]

    Permalink

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

  121. var oncontextmenu: Function1[MouseEvent, _]

    Permalink
  122. var ondblclick: Function1[MouseEvent, _]

    Permalink
  123. var ondeactivate: Function1[UIEvent, _]

    Permalink
  124. var ondrag: Function1[DragEvent, _]

    Permalink

    Called periodically throughout the drag and drop operation.

  125. var ondragend: Function1[DragEvent, _]

    Permalink

    Called when the drag operation is finished.

  126. var ondragenter: Function1[DragEvent, _]

    Permalink

    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.

  127. var ondragleave: Function1[DragEvent, _]

    Permalink
  128. var ondragover: Function1[DragEvent, _]

    Permalink

    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.

  129. var ondragstart: Function1[DragEvent, _]

    Permalink

    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.

  130. var ondrop: Function1[DragEvent, _]

    Permalink
  131. var ondurationchange: Function1[Event, _]

    Permalink
  132. var onemptied: Function1[Event, _]

    Permalink
  133. var onended: Function1[Event, _]

    Permalink
  134. var onerror: Function1[ErrorEvent, _]

    Permalink
  135. var onfocus: Function1[FocusEvent, _]

    Permalink
  136. var onfocusin: Function1[FocusEvent, _]

    Permalink
  137. var onfocusout: Function1[FocusEvent, _]

    Permalink
  138. var onfullscreenchange: Function1[Event, _]

    Permalink

    The Document interface's onfullscreenchange property is an event handler for the fullscreenchange event that is fired immediately before a document transitions into or out of full-screen mode.

    The Document interface's onfullscreenchange property is an event handler for the fullscreenchange event that is fired immediately before a document transitions into or out of full-screen mode.

    Definition Classes
    Document
  139. var onfullscreenerror: Function1[Event, _]

    Permalink

    The Document.onfullscreenerror property is an event handler for the fullscreenerror event that is sent to the document when it fails to transition into full-screen mode after a prior call to Element.requestFullscreen().

    The Document.onfullscreenerror property is an event handler for the fullscreenerror event that is sent to the document when it fails to transition into full-screen mode after a prior call to Element.requestFullscreen().

    Definition Classes
    Document
  140. var onhelp: Function1[Event, _]

    Permalink
  141. var oninput: Function1[Event, _]

    Permalink
  142. var onkeydown: Function1[KeyboardEvent, _]

    Permalink

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

  143. var onkeypress: Function1[KeyboardEvent, _]

    Permalink
  144. var onkeyup: Function1[KeyboardEvent, _]

    Permalink

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

  145. var onload: Function1[Event, _]

    Permalink
  146. var onloadeddata: Function1[Event, _]

    Permalink
  147. var onloadedmetadata: Function1[Event, _]

    Permalink
  148. var onloadstart: Function1[Event, _]

    Permalink
  149. var onmousedown: Function1[MouseEvent, _]

    Permalink

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

  150. var onmousemove: Function1[MouseEvent, _]

    Permalink
  151. var onmouseout: Function1[MouseEvent, _]

    Permalink

    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).

  152. var onmouseover: Function1[MouseEvent, _]

    Permalink

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

  153. var onmouseup: Function1[MouseEvent, _]

    Permalink
  154. var onmousewheel: Function1[WheelEvent, _]

    Permalink
  155. var onpause: Function1[Event, _]

    Permalink
  156. var onplay: Function1[Event, _]

    Permalink
  157. var onplaying: Function1[Event, _]

    Permalink
  158. var onpointercancel: Function1[PointerEvent, _]

    Permalink

    a browser fires this event if it concludes the pointer will no longer be able to generate events (for example the related device is deactived).

  159. var onpointerdown: Function1[PointerEvent, _]

    Permalink

    fired when a pointer becomes active.

  160. var onpointerenter: Function1[PointerEvent, _]

    Permalink

    fired when a pointing device is moved into the hit test boundaries of an element or one of its descendants, including as a result of a pointerdown event from a device that does not support hover (see pointerdown).

  161. var onpointerleave: Function1[PointerEvent, _]

    Permalink

    fired when a pointing device is moved out of the hit test boundaries of an element.

    fired when a pointing device is moved out of the hit test boundaries of an element. For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.

  162. var onpointerlockchange: Function1[Event, _]

    Permalink

    When the Pointer lock state changes—for example, when calling requestPointerLock, exitPointerLock, the user pressing the ESC key, etc.—the pointerlockchange event is dispatched to the document.

    When the Pointer lock state changes—for example, when calling requestPointerLock, exitPointerLock, the user pressing the ESC key, etc.—the pointerlockchange event is dispatched to the document. This is a simple event and contains no extra data.

    Definition Classes
    Document
  163. var onpointerlockerror: Function1[Event, _]

    Permalink

    When there is an error caused by calling requestPointerLock or exitPointerLock, the pointerlockerror event is dispatched to the document.

    When there is an error caused by calling requestPointerLock or exitPointerLock, the pointerlockerror event is dispatched to the document. This is a simple event and contains no extra data.

    Definition Classes
    Document
  164. var onpointermove: Function1[PointerEvent, _]

    Permalink

    fired when a pointer changes coordinates.

  165. var onpointerout: Function1[PointerEvent, _]

    Permalink

    fired for several reasons including: pointing device is moved out of the hit test boundaries of an element; firing the pointerup event for a device that does not support hover (see pointerup); after firing the pointercancel event (see pointercancel); when a pen stylus leaves the hover range detectable by the digitizer.

  166. var onpointerover: Function1[PointerEvent, _]

    Permalink

    fired when a pointing device is moved into an element's hit test boundaries.

  167. var onpointerup: Function1[PointerEvent, _]

    Permalink

    fired when a pointer is no longer active.

  168. var onprogress: Function1[Any, _]

    Permalink
  169. var onratechange: Function1[Event, _]

    Permalink
  170. var onreadystatechange: Function1[Event, _]

    Permalink

    Returns the event handling code for the readystatechange event.

  171. var onreset: Function1[Event, _]

    Permalink
  172. var onscroll: Function1[UIEvent, _]

    Permalink
  173. var onseeked: Function1[Event, _]

    Permalink
  174. var onseeking: Function1[Event, _]

    Permalink
  175. var onselect: Function1[UIEvent, _]

    Permalink
  176. var onselectionchange: Function1[Event, _]

    Permalink
  177. var onselectstart: Function1[Event, _]

    Permalink
  178. var onstalled: Function1[Event, _]

    Permalink
  179. var onstop: Function1[Event, _]

    Permalink
  180. var onstoragecommit: Function1[StorageEvent, _]

    Permalink
  181. var onsubmit: Function1[Event, _]

    Permalink

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

  182. var onsuspend: Function1[Event, _]

    Permalink
  183. var ontimeupdate: Function1[Event, _]

    Permalink
  184. var onvolumechange: Function1[Event, _]

    Permalink
  185. var onwaiting: Function1[Event, _]

    Permalink
  186. var onwheel: Function1[WheelEvent, _]

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

    Permalink

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

  188. def ownerDocument: Document

    Permalink

    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.

    Definition Classes
    Node
  189. def parentNode: Node

    Permalink

    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.

    Definition Classes
    Node
  190. def plugins: HTMLCollection[Element]

    Permalink

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

  191. def pointerLockElement: Element

    Permalink

    The pointerLockElement property provides the element set as the target for mouse events while the pointer is locked.

    The pointerLockElement property provides the element set as the target for mouse events while the pointer is locked. It is null if lock is pending, pointer is unlocked, or the target is in another document.

    Definition Classes
    Document
  192. def previousSibling: Node

    Permalink

    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.

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

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

    Permalink

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

  195. def queryCommandIndeterm(commandId: String): Boolean

    Permalink

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

  196. def queryCommandState(commandId: String): Boolean

    Permalink

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

  197. def queryCommandSupported(commandId: String): Boolean

    Permalink

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

  198. def queryCommandText(commandId: String): String

    Permalink

    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).

  199. def queryCommandValue(commandId: String): String

    Permalink

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

  200. def querySelector(selectors: String): Element

    Permalink

    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.

    Definition Classes
    NodeSelector
  201. def querySelectorAll(selectors: String): NodeList[Element]

    Permalink

    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.

    Definition Classes
    NodeSelector
  202. def readyState: DocumentReadyState

    Permalink

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

  203. def referrer: String

    Permalink

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

  204. def removeChild(oldChild: Node): Node

    Permalink

    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.

    Definition Classes
    Node
  205. def removeEventListener[T <: Event](type: String, listener: Function1[T, _], options: EventListenerOptions): Unit

    Permalink

    Removes the event listener previously registered with EventTarget.addEventListener.

    Removes the event listener previously registered with EventTarget.addEventListener.

    This implementation accepts a settings object of type EventListenerOptions.

    Definition Classes
    EventTarget
  206. def removeEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean = js.native): Unit

    Permalink

    Removes the event listener previously registered with EventTarget.addEventListener.

    Removes the event listener previously registered with EventTarget.addEventListener.

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

    Permalink

    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.

    Definition Classes
    Node
  208. def replaceChildren(nodes: |[Node, String]*): Unit

    Permalink

    Replaces the existing children of a Node with a specified new set of children.

    Replaces the existing children of a Node with a specified new set of children.

    Definition Classes
    ParentNode
  209. def styleSheets: StyleSheetList

    Permalink

    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.

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

    Permalink
    Definition Classes
    AnyRef
  211. var textContent: String

    Permalink

    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.

    Definition Classes
    Node
  212. var title: String

    Permalink

    Returns the title of the current document.

  213. def toLocaleString(): String

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

    Permalink
    Definition Classes
    AnyRef → Any
  215. var uniqueID: String

    Permalink
  216. def updateSettings(): Unit

    Permalink
  217. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  218. def visibilityState: |[VisibilityState, String]

    Permalink

    Is a string denoting the visibility state of the document.

    Is a string denoting the visibility state of the document.

    Note: or a vendor prefixed DOMString as defined in 4.5 Vendor Prefixes

    Definition Classes
    PageVisibility
  219. var visibilitychange: Function1[Event, _]

    Permalink

    The visibilitychange event is fired when the content of a tab has become visible or has been hidden.

    The visibilitychange event is fired when the content of a tab has become visible or has been hidden.

    Definition Classes
    PageVisibility
  220. final def wait(): Unit

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

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

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

    Permalink

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

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

    Permalink

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

Inherited from Document

Inherited from PageVisibility

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