Class

org.scalajs.dom.raw

HTMLInputElement

Related Doc: package raw

Permalink

abstract class HTMLInputElement extends HTMLElement

The HTMLInputElement interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of input elements.

MDN

Annotations
@RawJSType() @native()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. HTMLInputElement
  2. HTMLElement
  3. Element
  4. NonDocumentTypeChildNode
  5. ParentNode
  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 HTMLInputElement()

    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. var accept: String

    Permalink

    Reflects the accept HTML attribute, containing comma-separated list of file types accepted by the server when type is file.

    Reflects the accept HTML attribute, containing comma-separated list of file types accepted by the server when type is file.

    MDN

  5. var accessKey: String

    Permalink
    Definition Classes
    Element
  6. 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).

    MDN

    Definition Classes
    EventTarget
  7. var alt: String

    Permalink

    Reflects the alt HTML attribute, containing alternative text to use when type is image.

    Reflects the alt HTML attribute, containing alternative text to use when type is image.

    MDN

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

    MDN

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

    Permalink
    Definition Classes
    Any
  10. 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).  

    MDN

    Definition Classes
    Node
  11. var autocomplete: String

    Permalink

    Reflects the autocomplete HTML attribute, indicating whether the value of the control can be automatically completed by the browser.

    Reflects the autocomplete HTML attribute, indicating whether the value of the control can be automatically completed by the browser. Ignored if the value of the type attribute is hidden, checkbox, radio, file, or a button type (button, submit, reset, image). Possible values are: off: The user must explicitly enter a value into this field for every use, or the document provides its own auto-completion method; the browser does not automatically complete the entry. on: The browser can automatically complete the value based on values that the user has entered during previous uses.

    MDN

  12. var autofocus: Boolean

    Permalink

    Reflects the autofocus HTML attribute, which specifies that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control.

    Reflects the autofocus HTML attribute, which specifies that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form element in a document can have the autofocus attribute. It cannot be applied if the type attribute is set to hidden (that is, you cannot automatically set focus to a hidden control).

    MDN

  13. def blur(): Unit

    Permalink

    The blur method removes keyboard focus from the current element.

    The blur method removes keyboard focus from the current element.

    MDN

    Definition Classes
    HTMLElement
  14. def checkValidity(): Boolean

    Permalink

    Returns false if the element is a candidate for constraint validation, and it does not satisfy its constraints.

    Returns false if the element is a candidate for constraint validation, and it does not satisfy its constraints. In this case, it also fires an invalid event at the element. It returns true if the element is not a candidate for constraint validation, or if it satisfies its constraints.

    MDN

  15. var checked: Boolean

    Permalink

    The current state of the element when type is checkbox or radio.

    The current state of the element when type is checkbox or radio.

    MDN

  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.

    MDN

    Definition Classes
    ParentNode
  17. def childNodes: NodeList

    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.

    MDN

    Definition Classes
    Node
  18. def children: HTMLCollection

    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.

    MDN

    Definition Classes
    ParentNode
  19. var classList: DOMTokenList

    Permalink

    Supported by FF>3.6, any Opera, any Chrome, any IE, any Safari

    Supported by FF>3.6, any Opera, any Chrome, any IE, any Safari

    Definition Classes
    Element
  20. var className: String

    Permalink
    Definition Classes
    HTMLElement
  21. def click(): Unit

    Permalink

    The click method simulates a mouse click on an element.

    The click method simulates a mouse click on an element.

    MDN

    Definition Classes
    HTMLElement
  22. def clientHeight: Int

    Permalink

    Returns the inner height of an element in pixels, including padding but not the horizontal scrollbar height, border, or margin.

    Returns the inner height of an element in pixels, including padding but not the horizontal scrollbar height, border, or margin.

    clientHeight can be calculated as CSS height + CSS padding - height of horizontal scrollbar (if present).

    MDN

    Definition Classes
    Element
  23. def clientLeft: Int

    Permalink

    The width of the left border of an element in pixels.

    The width of the left border of an element in pixels. It includes the width of the vertical scrollbar if the text direction of the element is right–to–left and if there is an overflow causing a left vertical scrollbar to be rendered. clientLeft does not include the left margin or the left padding. clientLeft is read-only.

    MDN

    Definition Classes
    Element
  24. def clientTop: Int

    Permalink

    The width of the top border of an element in pixels.

    The width of the top border of an element in pixels. It does not include the top margin or padding. clientTop is read-only.

    MDN

    Definition Classes
    Element
  25. def clientWidth: Int

    Permalink

    clientWidth is the inner width of an element in pixels.

    clientWidth is the inner width of an element in pixels. It includes padding but not the vertical scrollbar (if present, if rendered), border or margin.

    MDN

    Definition Classes
    Element
  26. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. 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.

    MDN

    Definition Classes
    Node
  28. 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.

    MDN

    Definition Classes
    Node
  29. def contains(child: HTMLElement): Boolean

    Permalink
    Definition Classes
    HTMLElement
  30. var contentEditable: String

    Permalink

    contentEditable is used to indicate whether or not the element is editable.

    contentEditable is used to indicate whether or not the element is editable. This enumerated attribute can have the following values:

    MDN

    Definition Classes
    HTMLElement
  31. var defaultChecked: Boolean

    Permalink

    The default state of a radio button or checkbox as originally specified in HTML that created this object.

    The default state of a radio button or checkbox as originally specified in HTML that created this object.

    MDN

  32. var defaultValue: String

    Permalink

    The default value as originally specified in HTML that created this object.

    The default value as originally specified in HTML that created this object.

    MDN

  33. var dir: String

    Permalink

    The dir attribute gets or sets the text writing directionality of the content of the current element.

    The dir attribute gets or sets the text writing directionality of the content of the current element.

    MDN

    Definition Classes
    HTMLElement
  34. var disabled: UndefOr[Boolean]

    Permalink
    Definition Classes
    HTMLElement
  35. 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().

    MDN

    Definition Classes
    EventTarget
  36. var draggable: Boolean

    Permalink
    Definition Classes
    HTMLElement
  37. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  39. var files: FileList

    Permalink
  40. var filters: AnyRef

    Permalink
    Definition Classes
    HTMLElement
  41. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  42. 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.

    MDN

    Definition Classes
    Node
  43. 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.

    MDN

    Definition Classes
    ParentNode
  44. def focus(): Unit

    Permalink

    Sets focus on the specified element, if it can be focused.

    Sets focus on the specified element, if it can be focused.

    MDN

    Definition Classes
    HTMLElement
  45. def form: HTMLFormElement

    Permalink

    The containing form element, if this element is in a form.

    The containing form element, if this element is in a form. If this element is not contained in a form element: HTML5 this can be the id attribute of any <form> element in the same document. Even if the attribute is set on <input>, this property will be null, if it isn't the id of a <form> element. HTML 4 this must be null.

    MDN

  46. var formAction: String

    Permalink

    Reflects the formaction HTML attribute, containing the URI of a program that processes information submitted by the element.

    Reflects the formaction HTML attribute, containing the URI of a program that processes information submitted by the element. If specified, this attribute overrides the action attribute of the <form> element that owns this element.

    MDN

  47. var formEnctype: String

    Permalink

    Reflects the formenctype HTML attribute, containing the type of content that is used to submit the form to the server.

    Reflects the formenctype HTML attribute, containing the type of content that is used to submit the form to the server. If specified, this attribute overrides the enctype attribute of the <form> element that owns this element.

    MDN

  48. var formMethod: String

    Permalink

    Reflects the formmethod HTML attribute, containing the HTTP method that the browser uses to submit the form.

    Reflects the formmethod HTML attribute, containing the HTTP method that the browser uses to submit the form. If specified, this attribute overrides the method attribute of the <form> element that owns this element.

    MDN

  49. var formNoValidate: String

    Permalink

    Reflects the formnovalidate HTML attribute, indicating that the form is not to be validated when it is submitted.

    Reflects the formnovalidate HTML attribute, indicating that the form is not to be validated when it is submitted. If specified, this attribute overrides the novalidate attribute of the <form> element that owns this element.

    MDN

  50. var formTarget: String

    Permalink

    Reflects the formtarget HTML attribute, containing a name or keyword indicating where to display the response that is received after submitting the form.

    Reflects the formtarget HTML attribute, containing a name or keyword indicating where to display the response that is received after submitting the form. If specified, this attribute overrides the target attribute of the <form> element that owns this element.

    MDN

  51. def getAttribute(): String

    Permalink

    getAttribute() returns the value of the named attribute on the specified element.

    getAttribute() returns the value of the named attribute on the specified element. If the named attribute does not exist, the value returned will either be null or "" (the empty string); see Notes for details.

    MDN

    Definition Classes
    Element
  52. def getAttribute(name: String): String

    Permalink

    getAttribute() returns the value of the named attribute on the specified element.

    getAttribute() returns the value of the named attribute on the specified element. If the named attribute does not exist, the value returned will either be null or "" (the empty string); see Notes for details.

    MDN

    Definition Classes
    Element
  53. def getAttributeNS(namespaceURI: String, localName: String): String

    Permalink

    getAttributeNS returns the string value of the attribute with the specified namespace and name.

    getAttributeNS returns the string value of the attribute with the specified namespace and name. If the named attribute does not exist, the value returned will either be null or "" (the empty string); see Notes for details.

    MDN

    Definition Classes
    Element
  54. def getAttributeNode(name: String): Attr

    Permalink

    Returns the specified attribute of the specified element, as an Attr node.

    Returns the specified attribute of the specified element, as an Attr node.

    MDN

    Definition Classes
    Element
  55. def getAttributeNodeNS(namespaceURI: String, localName: String): Attr

    Permalink

    Returns the Attr node for the attribute with the given namespace and name.

    Returns the Attr node for the attribute with the given namespace and name.

    MDN

    Definition Classes
    Element
  56. def getBoundingClientRect(): ClientRect

    Permalink

    Returns a text rectangle object that encloses a group of text rectangles.

    Returns a text rectangle object that encloses a group of text rectangles.

    MDN

    Definition Classes
    Element
  57. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  58. def getClientRects(): ClientRectList

    Permalink

    Returns a collection of rectangles that indicate the bounding rectangles for each box in a client.

    Returns a collection of rectangles that indicate the bounding rectangles for each box in a client.

    MDN

    Definition Classes
    Element
  59. def getElementsByClassName(classNames: String): NodeList

    Permalink
    Definition Classes
    Element
  60. def getElementsByTagName(name: String): NodeList

    Permalink

    Returns a list of elements with the given tag name.

    Returns a list of elements with the given tag name. The subtree underneath the specified element is searched, excluding the element itself. The returned list is live, meaning that it updates itself with the DOM tree automatically. Consequently, there is no need to call several times element.getElementsByTagName with the same element and arguments.

    MDN

    Definition Classes
    Element
  61. def getElementsByTagNameNS(namespaceURI: String, localName: String): NodeList

    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.

    MDN

    Definition Classes
    Element
  62. def hasAttribute(name: String): Boolean

    Permalink

    hasAttribute returns a boolean value indicating whether the specified element has the specified attribute or not.

    hasAttribute returns a boolean value indicating whether the specified element has the specified attribute or not.

    MDN

    Definition Classes
    Element
  63. def hasAttributeNS(namespaceURI: String, localName: String): Boolean

    Permalink

    hasAttributeNS returns a boolean value indicating whether the current element has the specified attribute.

    hasAttributeNS returns a boolean value indicating whether the current element has the specified attribute.

    MDN

    Definition Classes
    Element
  64. 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.

    MDN

    Definition Classes
    Node
  65. 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.

    MDN

    Definition Classes
    Node
  66. def hasOwnProperty(v: String): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  68. var height: String

    Permalink

    Reflects the height HTML attribute, which defines the height of the image displayed for the button, if the value of type is image.

    Reflects the height HTML attribute, which defines the height of the image displayed for the button, if the value of type is image.

    MDN

  69. var id: String

    Permalink
    Definition Classes
    Element
  70. var indeterminate: Boolean

    Permalink

    Indicates that a checkbox is neither on nor off.

    Indicates that a checkbox is neither on nor off.

    MDN

  71. var innerHTML: String

    Permalink

    innerHTML sets or gets the HTML syntax describing the element's descendants.

    innerHTML sets or gets the HTML syntax describing the element's descendants.

    Note: If a <div>, <span>, or <noembed> node has a child text node that includes the characters (&), (<), or (>), innerHTML returns these characters as &amp, &lt and &gt respectively. Use Node.textContent to get a correct copy of these text nodes' contents.

    Definition Classes
    Element
  72. def insertAdjacentHTML(where: String, html: String): Unit

    Permalink

    Supported by FF>8, Opera>7, Chrome>1, IE>4, Safari>4

    Supported by FF>8, Opera>7, Chrome>1, IE>4, Safari>4

    Definition Classes
    Element
  73. 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.

    MDN

    Definition Classes
    Node
  74. var isContentEditable: Boolean

    Permalink

    isContentEditable returns true if the contents of the element are editable; otherwise it returns false.

    isContentEditable returns true if the contents of the element are editable; otherwise it returns false.

    MDN

    Definition Classes
    HTMLElement
  75. 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.

    MDN

    Definition Classes
    Node
  76. 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.

    MDN

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

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

    Permalink
    Definition Classes
    Object
  79. 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.

    MDN

    Definition Classes
    Node
  80. 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.

    MDN

    Definition Classes
    Node
  81. var lang: String

    Permalink

    This property gets or sets the base language of an element's attribute values and text content.

    This property gets or sets the base language of an element's attribute values and text content.

    MDN

    Definition Classes
    HTMLElement
  82. 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.

    MDN

    Definition Classes
    Node
  83. 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.

    MDN

    Definition Classes
    ParentNode
  84. var list: HTMLElement

    Permalink

    Identifies a list of pre-defined options to suggest to the user.

    Identifies a list of pre-defined options to suggest to the user. The value must be the id of a <datalist> element in the same document. The browser displays only options that are valid values for this input element. This attribute is ignored when the type attribute's value is hidden, checkbox, radio, file, or a button type.

    MDN

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

    MDN

    Definition Classes
    Node
  86. 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.

    MDN

    Definition Classes
    Node
  87. 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.

    MDN

    Definition Classes
    Node
  88. var max: String

    Permalink

    Reflects the max HTML attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.

    Reflects the max HTML attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.

    MDN

  89. var maxLength: Int

    Permalink

    Reflects the maxlength HTML attribute, containing the maximum length of text (in Unicode code points) that the value can be changed to.

    Reflects the maxlength HTML attribute, containing the maximum length of text (in Unicode code points) that the value can be changed to. The constraint is evaluated only when the value is changed Note: If you set maxLength to a negative value programmatically, an exception will be thrown.

    MDN

  90. var min: String

    Permalink

    Reflects the min HTML attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.

    Reflects the min HTML attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.

    MDN

  91. var multiple: Boolean

    Permalink

    Reflects the multiple HTML attribute, indicating whether more than one value is possible (e.g., multiple files).

    Reflects the multiple HTML attribute, indicating whether more than one value is possible (e.g., multiple files).

    MDN

  92. var name: String

    Permalink

    Reflects the name HTML attribute, containing a name that identifies the element when submitting the form.

    Reflects the name HTML attribute, containing a name that identifies the element when submitting the form.

    MDN

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

    MDN

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

    Permalink
    Definition Classes
    AnyRef
  95. def nextElementSibling: Element

    Permalink

    The nextElementSibling read-only property returns the element immediately following the specified one in its parent's children list, or null if the specified element is the last one in the list.

    The nextElementSibling read-only property returns the element immediately following the specified one in its parent's children list, or null if the specified element is the last one in the list.

    MDN

    Definition Classes
    NonDocumentTypeChildNode
  96. 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.

    MDN

    Definition Classes
    Node
  97. 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.

    MDN

    Definition Classes
    Node
  98. 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.

    MDN

    Definition Classes
    Node
  99. def 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.

    MDN

    Definition Classes
    Node
  100. 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.

    MDN

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

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

    Permalink
    Definition Classes
    AnyRef
  103. def offsetHeight: Double

    Permalink

    Height of an element relative to the element's offsetParent.

    Height of an element relative to the element's offsetParent.

    MDN

    Definition Classes
    HTMLElement
  104. def offsetLeft: Double

    Permalink

    Returns the number of pixels that the upper left corner of the current element is offset to the left within the offsetParent node.

    Returns the number of pixels that the upper left corner of the current element is offset to the left within the offsetParent node.

    MDN

    Definition Classes
    HTMLElement
  105. def offsetParent: Element

    Permalink

    offsetParent returns a reference to the object which is the closest (nearest in the containment hierarchy) positioned containing element.

    offsetParent returns a reference to the object which is the closest (nearest in the containment hierarchy) positioned containing element. If the element is non-positioned, the nearest table cell or root element (html in standards compliant mode; body in quirks rendering mode) is the offsetParent. offsetParent returns null when the element has style.display set to "none". The offsetParent is useful because offsetTop and offsetLeft are relative to its padding edge.

    MDN

    Definition Classes
    HTMLElement
  106. def offsetTop: Double

    Permalink

    offsetTop returns the distance of the current element relative to the top of the offsetParent node.

    offsetTop returns the distance of the current element relative to the top of the offsetParent node.

    MDN

    Definition Classes
    HTMLElement
  107. def offsetWidth: Double

    Permalink

    Returns the layout width of an element.

    Returns the layout width of an element.

    MDN

    Definition Classes
    HTMLElement
  108. var onabort: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  109. var onactivate: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  110. var onbeforeactivate: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  111. var onbeforecopy: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  112. var onbeforecut: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  113. var onbeforedeactivate: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  114. var onbeforepaste: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  115. var onblur: Function1[FocusEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  116. var oncanplay: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  117. var oncanplaythrough: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  118. var onchange: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  119. var onclick: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  120. var oncontextmenu: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  121. var oncopy: Function1[DragEvent, _]

    Permalink
    Definition Classes
    Element
  122. var oncuechange: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  123. var oncut: Function1[DragEvent, _]

    Permalink
    Definition Classes
    Element
  124. var ondblclick: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  125. var ondeactivate: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  126. var ondrag: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  127. var ondragend: Function1[DragEvent, _]

    Permalink

    The ParentNode.children read-only property returns a live HTMLCollection of child elements of the given object.

    The ParentNode.children read-only property returns a live HTMLCollection of child elements of the given object.

    The items in the returned collection are objects and not strings. To get data from those node objects, you must use their properties (e.g. elementNodeReference.children[1].nodeName to get the name, etc.).

    MDN

    Definition Classes
    HTMLElement
  128. var ondragenter: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  129. var ondragleave: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  130. var ondragover: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  131. var ondragstart: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  132. var ondrop: Function1[DragEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  133. var ondurationchange: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  134. var onemptied: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  135. var onended: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  136. var onfocus: Function1[FocusEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  137. var onfocusin: Function1[FocusEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  138. var onfocusout: Function1[FocusEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  139. var onhelp: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  140. var oninput: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  141. var onkeydown: Function1[KeyboardEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  142. var onkeypress: Function1[KeyboardEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  143. var onkeyup: Function1[KeyboardEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  144. var onloadeddata: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  145. var onloadedmetadata: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  146. var onloadstart: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  147. var onmousedown: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  148. var onmouseenter: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  149. var onmouseleave: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  150. var onmousemove: Function1[MouseEvent, _]

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

    Permalink
    Definition Classes
    HTMLElement
  152. var onmouseover: Function1[MouseEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  153. var onmouseup: Function1[MouseEvent, _]

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

    Permalink
    Definition Classes
    HTMLElement
  155. var onpaste: Function1[DragEvent, _]

    Permalink
    Definition Classes
    Element
  156. var onpause: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  157. var onplay: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  158. var onplaying: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  159. var onprogress: Function1[Any, _]

    Permalink
    Definition Classes
    HTMLElement
  160. var onratechange: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  161. var onreadystatechange: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  162. var onreset: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  163. var onscroll: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  164. var onseeked: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  165. var onseeking: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  166. var onselect: Function1[UIEvent, _]

    Permalink
    Definition Classes
    HTMLElement
  167. var onselectstart: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  168. var onstalled: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  169. var onsubmit: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  170. var onsuspend: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  171. var ontimeupdate: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  172. var onvolumechange: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  173. var onwaiting: Function1[Event, _]

    Permalink
    Definition Classes
    HTMLElement
  174. var outerHTML: String

    Permalink

    Gets the markup of the element including its content.

    Gets the markup of the element including its content. When used as a setter, replaces the element with nodes parsed from the given string.

    Supported by FF>10, any Opera, any Chrome, any IE, any Safari

    Definition Classes
    Element
  175. def ownerDocument: HTMLDocument

    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.

    MDN

    This is defined on Node; we override it here because we know (from the fact that this is an HTMLElement) that we are getting an HTMLDocument here.

    Definition Classes
    HTMLElementNode
  176. var parentElement: HTMLElement

    Permalink
    Definition Classes
    HTMLElement
  177. 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.

    MDN

    Definition Classes
    Node
  178. var pattern: String

    Permalink

    Reflects the pattern HTML attribute, containing a regular expression that the control's value is checked against.

    Reflects the pattern HTML attribute, containing a regular expression that the control's value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is text, search, tel, url or email; otherwise it is ignored.

    MDN

  179. var placeholder: String

    Permalink

    Reflects the placeholder HTML attribute, containing a hint to the user of what can be entered in the control.

    Reflects the placeholder HTML attribute, containing a hint to the user of what can be entered in the control. The placeholder text must not contain carriage returns or line-feeds. This attribute applies when the value of the type attribute is text, search, tel, url or email; otherwise it is ignored.

    MDN

  180. var prefix: String

    Permalink

    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
  181. def previousElementSibling: Element

    Permalink

    The previousElementSibling read-only property returns the Element immediately prior to the specified one in its parent's children list, or null if the specified element is the first one in the list.

    The previousElementSibling read-only property returns the Element immediately prior to the specified one in its parent's children list, or null if the specified element is the first one in the list.

    MDN

    Definition Classes
    NonDocumentTypeChildNode
  182. 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.

    MDN

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

    Permalink
    Definition Classes
    Object
  184. 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.

    MDN

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

    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.

    MDN

    Definition Classes
    NodeSelector
  186. var readOnly: Boolean

    Permalink

    Reflects the readonly HTML attribute, indicating that the user cannot modify the value of the control.

    Reflects the readonly HTML attribute, indicating that the user cannot modify the value of the control. HTML5This is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type.

    MDN

  187. var readyState: Any

    Permalink
    Definition Classes
    HTMLElement
  188. var recordNumber: Any

    Permalink
    Definition Classes
    HTMLElement
  189. def removeAttribute(): Unit

    Permalink

    removeAttribute removes an attribute from the specified element.

    removeAttribute removes an attribute from the specified element.

    MDN

    Definition Classes
    Element
  190. def removeAttribute(name: String): Unit

    Permalink

    removeAttribute removes an attribute from the specified element.

    removeAttribute removes an attribute from the specified element.

    MDN

    Definition Classes
    Element
  191. def removeAttributeNS(namespaceURI: String, localName: String): Unit

    Permalink

    removeAttributeNS removes the specified attribute from an element.

    removeAttributeNS removes the specified attribute from an element.

    MDN

    Definition Classes
    Element
  192. def removeAttributeNode(oldAttr: Attr): Attr

    Permalink

    removeAttributeNode removes the specified attribute from the current element.

    removeAttributeNode removes the specified attribute from the current element.

    MDN

    Definition Classes
    Element
  193. 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.

    MDN

    Definition Classes
    Node
  194. 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.

    MDN

    Definition Classes
    EventTarget
  195. 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.

    MDN

    Definition Classes
    Node
  196. var required: Boolean

    Permalink

    Reflects the required HTML attribute, indicating that the user must fill in a value before submitting a form.

    Reflects the required HTML attribute, indicating that the user must fill in a value before submitting a form.

    MDN

  197. def scrollHeight: Int

    Permalink

    Height of the scroll view of an element; it includes the element padding but not its margin.

    Height of the scroll view of an element; it includes the element padding but not its margin.

    MDN

    Definition Classes
    Element
  198. def scrollIntoView(top: Boolean = js.native): Unit

    Permalink
    Definition Classes
    Element
  199. var scrollLeft: Double

    Permalink

    scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.

    scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.

    MDN

    Definition Classes
    Element
  200. var scrollTop: Double

    Permalink

    scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.

    scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.

    MDN

    Definition Classes
    Element
  201. def scrollWidth: Int

    Permalink

    scrollWidth is a read–only property that returns either the width in pixels of the content of an element or the width of the element itself, whichever is greater.

    scrollWidth is a read–only property that returns either the width in pixels of the content of an element or the width of the element itself, whichever is greater. If the element is wider than its content area (for example, if there are scroll bars for scrolling through the content), the scrollWidth is larger than the clientWidth.

    MDN

    Definition Classes
    Element
  202. def select(): Unit

    Permalink

    Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.

    Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.

    MDN

  203. var selectionEnd: Int

    Permalink

    The index of the end of selected text.

    The index of the end of selected text.

    MDN

  204. var selectionStart: Int

    Permalink

    The index of the beginning of selected text.

    The index of the beginning of selected text.

    MDN

  205. def setAttribute(name: String, value: String): Unit

    Permalink

    Adds a new attribute or changes the value of an existing attribute on the specified element.

    Adds a new attribute or changes the value of an existing attribute on the specified element.

    MSN

    Definition Classes
    Element
  206. def setAttributeNS(namespaceURI: String, qualifiedName: String, value: String): Unit

    Permalink

    setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.

    setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.

    MDN

    Definition Classes
    Element
  207. def setAttributeNode(newAttr: Attr): Attr

    Permalink

    setAttributeNode() adds a new Attr node to the specified element.

    setAttributeNode() adds a new Attr node to the specified element.

    MDN

    Definition Classes
    Element
  208. def setAttributeNodeNS(newAttr: Attr): Attr

    Permalink

    setAttributeNodeNS adds a new namespaced attribute node to an element.

    setAttributeNodeNS adds a new namespaced attribute node to an element.

    MDN

    Definition Classes
    Element
  209. def setCustomValidity(error: String): Unit

    Permalink

    Sets a custom validity message for the element.

    Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.

    MDN

  210. def setSelectionRange(start: Int, end: Int): Unit

    Permalink

    Selects a range of text in the element (but does not focus it).

    Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.

    MDN

  211. var size: Int

    Permalink

    Reflects the size HTML attribute, containing size of the control.

    Reflects the size HTML attribute, containing size of the control. This value is in pixels unless the value of type is text or password, in which case, it is an integer number of characters. HTML5 Applies only when type is set to text, search, tel, url, email, or password; otherwise it is ignored.

    MDN

  212. var spellcheck: Boolean

    Permalink
    Definition Classes
    HTMLElement
  213. var src: String

    Permalink

    Reflects the src HTML attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of type is image; otherwise it is ignored.

    Reflects the src HTML attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of type is image; otherwise it is ignored.

    MDN

  214. var status: Boolean

    Permalink
  215. var step: String

    Permalink

    Reflects the step HTML attribute, which works with min and max to limit the increments at which a numeric or date-time value can be set.

    Reflects the step HTML attribute, which works with min and max to limit the increments at which a numeric or date-time value can be set. It can be the string any or a positive floating point number. If this is not set to any, the control accepts only values at multiples of the step value greater than the minimum.

    MDN

  216. def stepDown(n: Int = js.native): Unit

    Permalink

    Decrements the value by (step * n), where n defaults to 1 if not specified.

    Decrements the value by (step * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception: if the method is not applicable to for the current type value. if the element has no step value. if the value cannot be converted to a number. if the resulting value is above the max or below the min. 

    MDN

  217. def stepUp(n: Int = js.native): Unit

    Permalink

    Increments the value by (step * n), where n defaults to 1 if not specified.

    Increments the value by (step * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception: if the method is not applicable to for the current type value. if the element has no step value. if the value cannot be converted to a number. if the resulting value is above the max or below the min.

    MDN

  218. var style: CSSStyleDeclaration

    Permalink

    Returns an object that represents the element's style attribute.

    Returns an object that represents the element's style attribute.

    MDN

    Definition Classes
    HTMLElement
  219. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  220. var tabIndex: Int

    Permalink

    Gets/sets the tab order of the current element.

    Gets/sets the tab order of the current element.

    The tabindex global attribute is an integer indicating if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position. It can take several values:

    • a negative value means that the element should be focusable, but should not be reachable via sequential keyboard navigation;
    • 0 means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;
    • a positive value which means should be focusable and reachable via sequential keyboard navigation; its relative order is defined by the value of the attribute: the sequential follow the increasing number of the tabindex. If several elements share the same tabindex, their relative order follows their relative position in the document).

    An element with a 0 value, an invalid value, or no tabindex value should be placed after elements with a positive tabindex in the sequential keyboard navigation order.

    MDN

    Definition Classes
    HTMLElement
  221. def tagName: String

    Permalink

    In XML (and XML-based languages such as XHTML), tagName preserves case.

    In XML (and XML-based languages such as XHTML), tagName preserves case. On HTML elements in DOM trees flagged as HTML documents, tagName returns the element name in the uppercase form. The value of tagName is the same as that of nodeName.

    MDN

    Definition Classes
    Element
  222. 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.

    MDN

    Definition Classes
    Node
  223. var title: String

    Permalink

    Establishes the text to be displayed in a 'tool tip' popup when the mouse is over the displayed node.

    Establishes the text to be displayed in a 'tool tip' popup when the mouse is over the displayed node.

    MDN

    Definition Classes
    HTMLElement
  224. def toLocaleString(): String

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

    Permalink
    Definition Classes
    AnyRef → Any
  226. var type: String

    Permalink

    Reflects the type HTML attribute, indicating the type of control to display.

    Reflects the type HTML attribute, indicating the type of control to display. See type attribute of <input> for possible values.

  227. var validationMessage: String

    Permalink

    A localized message that describes the validation constraints that the control does not satisfy (if any).

    A localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation (willvalidate is false), or it satisfies its constraints.

    MDN

  228. var validity: ValidityState

    Permalink

    The validity state that this element is in. 

    The validity state that this element is in. 

    MDN

  229. var value: String

    Permalink

    Current value in the control.

    Current value in the control.

    MDN

  230. var valueAsNumber: Int

    Permalink

    The value of the element, interpreted as one of the following in order: a time value a number null if conversion is not possible

    The value of the element, interpreted as one of the following in order: a time value a number null if conversion is not possible

    MDN

  231. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  232. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  235. var width: String

    Permalink

    Reflects the width HTML attribute, which defines the width of the image displayed for the button, if the value of type is image.

    Reflects the width HTML attribute, which defines the width of the image displayed for the button, if the value of type is image.

    MDN

  236. var willValidate: Boolean

    Permalink

    Indicates whether the element is a candidate for constraint validation.

    Indicates whether the element is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.

    MDN

Inherited from HTMLElement

Inherited from Element

Inherited from NonDocumentTypeChildNode

Inherited from ParentNode

Inherited from NodeSelector

Inherited from Node

Inherited from EventTarget

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped