org.scalajs.dom.raw

HTMLTableElement

abstract class HTMLTableElement extends HTMLElement

The HTMLTableElement interface provides special properties and methods (beyond the regular HTMLElement object interface it also has available to it by inheritance) for manipulating the layout and presentation of tables in an HTML document.

MDN

Annotations
@RawJSType() @native() @JSGlobal()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. HTMLTableElement
  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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HTMLTableElement()

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. var accessKey: String

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

    The EventTarget.

    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
  8. def appendChild(newChild: Node): Node

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

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

    MDN

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

    Definition Classes
    Any
  10. def attributes: NamedNodeMap

    .

    .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. def blur(): Unit

    The blur method removes keyboard focus from the current element.

    The blur method removes keyboard focus from the current element.

    MDN

    Definition Classes
    HTMLElement
  12. var caption: HTMLTableCaptionElement

    Is an HTMLTableCaptionElement representing the first <caption> that is a child of the element, or null if none is found.

    Is an HTMLTableCaptionElement representing the first <caption> that is a child of the element, or null if none is found. When set, if the object doesn't represent a <caption>, a DOMException with the HierarchyRequestError name is thrown. If a correct object is given, it is inserted in the tree as the first child of this element and the first <caption> that is a child of this element is removed from the tree, if any.

    MDN

  13. def childElementCount: Int

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

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

    MDN

    Definition Classes
    ParentNode
  14. def childNodes: NodeList

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

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

    MDN

    Definition Classes
    Node
  15. def children: HTMLCollection

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

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

    MDN

    Definition Classes
    ParentNode
  16. var classList: DOMTokenList

    Supported by FF>3.

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

    Definition Classes
    Element
  17. var className: String

    Definition Classes
    HTMLElement
  18. def click(): Unit

    The click method simulates a mouse click on an element.

    The click method simulates a mouse click on an element.

    MDN

    Definition Classes
    HTMLElement
  19. def clientHeight: Int

    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
  20. def clientLeft: Int

    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
  21. def clientTop: Int

    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
  22. def clientWidth: Int

    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
  23. def clone(): AnyRef

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

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

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

    MDN

    Definition Classes
    Node
  25. def compareDocumentPosition(other: Node): Int

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

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

    MDN

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

    Definition Classes
    HTMLElement
  27. var contentEditable: String

    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
  28. def createCaption(): HTMLElement

    Returns an HTMLElement representing the first <caption> that is a child of the element.

    Returns an HTMLElement representing the first <caption> that is a child of the element. If none is found, a new one is created and inserted in the tree as the first child of the <table> element.

    MDN

  29. def createTBody(): HTMLElement

  30. def createTFoot(): HTMLElement

    Returns an HTMLElement representing the first <tfoot> that is a child of the element.

    Returns an HTMLElement representing the first <tfoot> that is a child of the element. If none is found, a new one is created and inserted in the tree immediately before the first element that is neither a <caption>, a <colgroup>, nor a <thead>, or as the last child if there is no such element.

    MDN

  31. def createTHead(): HTMLElement

    Returns an HTMLElement representing the first <thead> that is a child of the element.

    Returns an HTMLElement representing the first <thead> that is a child of the element. If none is found, a new one is created and inserted in the tree immediately before the first element that is neither a <caption>, nor a <colgroup>, or as the last child if there is no such element.

    MDN

  32. def deleteCaption(): Unit

    Removes the first <caption> that is a child of the element.

    Removes the first <caption> that is a child of the element.

    MDN

  33. def deleteRow(index: Int): Unit

    Removes the row corresponding to the index given in parameter.

    Removes the row corresponding to the index given in parameter. If the index value is -1 the last row is removed; if it smaller than -1 or greater than the amount of rows in the collection, a DOMException with the value IndexSizeError is raised.

    MDN

  34. def deleteTFoot(): Unit

    Removes the first <tfoot> that is a child of the element.

    Removes the first <tfoot> that is a child of the element.

    MDN

  35. def deleteTHead(): Unit

    Removes the first <thead> that is a child of the element.

    Removes the first <thead> that is a child of the element.

    MDN

  36. var dir: String

    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
  37. def dispatchEvent(evt: Event): Boolean

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

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

    MDN

    Definition Classes
    EventTarget
  38. var draggable: Boolean

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

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

    Definition Classes
    AnyRef → Any
  41. var filters: AnyRef

    Definition Classes
    HTMLElement
  42. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  43. def firstChild: Node

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

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

    MDN

    Definition Classes
    Node
  44. def firstElementChild: Element

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

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

    MDN

    Definition Classes
    ParentNode
  45. def focus(): Unit

    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
  46. def getAttribute(name: String): String

    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
  47. def getAttributeNS(namespaceURI: String, localName: String): String

    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
  48. def getAttributeNode(name: String): Attr

    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
  49. def getAttributeNodeNS(namespaceURI: String, localName: String): Attr

    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
  50. def getBoundingClientRect(): ClientRect

    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
  51. final def getClass(): Class[_]

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

    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
  53. def getElementsByClassName(classNames: String): NodeList

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

    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
  55. def getElementsByTagNameNS(namespaceURI: String, localName: String): NodeList

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

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

    MDN

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

    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
  57. def hasAttributeNS(namespaceURI: String, localName: String): Boolean

    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
  58. def hasAttributes(): Boolean

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

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

    MDN

    Definition Classes
    Node
  59. def hasChildNodes(): Boolean

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

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

    MDN

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

    Definition Classes
    Object
  61. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  62. var id: String

    Definition Classes
    Element
  63. var innerHTML: String

    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
  64. def insertAdjacentHTML(where: String, html: String): Unit

    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
  65. def insertBefore(newChild: Node, refChild: Node): Node

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

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

    MDN

    Definition Classes
    Node
  66. def insertRow(index: Int = js.native): HTMLElement

    Returns an HTMLElement representing a new row of the table.

    Returns an HTMLElement representing a new row of the table. It inserts it in the rows collection immediately before the <tr> element at the givent index position. If necessary a <tbody> is created. If the index is -1, the new row is appended to the collection. If the index is smaller than -1 or greater than the number of rows in the collection, a DOMException with the value IndexSizeError is raised.

    MDN

  67. def isContentEditable: Boolean

    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
  68. def isDefaultNamespace(namespaceURI: String): Boolean

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

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

    MDN

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

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

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

    MDN

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

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

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

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

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

    MDN

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

    The 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
  74. var lang: String

    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
  75. def lastChild: Node

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

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

    MDN

    Definition Classes
    Node
  76. def lastElementChild: Element

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

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

    MDN

    Definition Classes
    ParentNode
  77. def localName: String

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

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

    MDN

    Definition Classes
    Node
  78. def lookupNamespaceURI(prefix: String): String

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

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

    MDN

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

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

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

    MDN

    Definition Classes
    Node
  80. def moveRow(indexFrom: Int = js.native, indexTo: Int = js.native): AnyRef

  81. def namespaceURI: String

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

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

    MDN

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

    Definition Classes
    AnyRef
  83. def nextElementSibling: Element

    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
  84. def nextSibling: Node

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

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

    MDN

    Definition Classes
    Node
  85. def nodeName: String

    Returns a DOMString containing the name of the Node.

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

    MDN

    Definition Classes
    Node
  86. def nodeType: Int

    The read-only Node.

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

    MDN

    Definition Classes
    Node
  87. def nodeValue: String

    Is a DOMString representing the value of an object.

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

    MDN

    Definition Classes
    Node
  88. def normalize(): Unit

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

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

    MDN

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

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

    Definition Classes
    AnyRef
  91. def offsetHeight: Double

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

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

    MDN

    Definition Classes
    HTMLElement
  92. def offsetLeft: Double

    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
  93. def offsetParent: Element

    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
  94. def offsetTop: Double

    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
  95. def offsetWidth: Double

    Returns the layout width of an element.

    Returns the layout width of an element.

    MDN

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    The ParentNode.

    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
  116. var ondragenter: Function1[DragEvent, _]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    HTMLElement
  162. var outerHTML: String

    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
  163. def ownerDocument: HTMLDocument

    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
  164. var parentElement: HTMLElement

    Definition Classes
    HTMLElement
  165. def parentNode: Node

    Returns a Node that is the parent of this node.

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

    MDN

    Definition Classes
    Node
  166. def prefix: String

    A DOMString representing the namespace prefix of the element, or null if no prefix is specified.

    A DOMString representing the namespace prefix of the element, or null if no prefix is specified.

    MDN

    Definition Classes
    ElementNode
  167. def previousElementSibling: Element

    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
  168. def previousSibling: Node

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

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

    MDN

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

    Definition Classes
    Object
  170. def querySelector(selectors: String): Element

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

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

    MDN

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

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

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

    MDN

    Definition Classes
    NodeSelector
  172. var readyState: Any

    Definition Classes
    HTMLElement
  173. var recordNumber: Any

    Definition Classes
    HTMLElement
  174. def removeAttribute(name: String): Unit

    removeAttribute removes an attribute from the specified element.

    removeAttribute removes an attribute from the specified element.

    MDN

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

    removeAttributeNS removes the specified attribute from an element.

    removeAttributeNS removes the specified attribute from an element.

    MDN

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

    removeAttributeNode removes the specified attribute from the current element.

    removeAttributeNode removes the specified attribute from the current element.

    MDN

    Definition Classes
    Element
  177. def removeChild(oldChild: Node): Node

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

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

    MDN

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

    Removes the event listener previously registered with EventTarget.

    Removes the event listener previously registered with EventTarget.addEventListener.

    MDN

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

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

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

    MDN

    Definition Classes
    Node
  180. def rows: HTMLCollection

    Returns a live HTMLCollection containing all the rows of the element, that is all <tr> that are a child of the element, or a child or one of its <thead>, <tbody> and <tfoot> children.

    Returns a live HTMLCollection containing all the rows of the element, that is all <tr> that are a child of the element, or a child or one of its <thead>, <tbody> and <tfoot> children. The rows members of a <thead> appear first, in tree order, and those members of a <tbody> last, also in tree order. The HTMLCollection is live and is automatically updated when the HTMLTableElement changes.

    MDN

  181. def scrollHeight: Int

    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
  182. def scrollIntoView(top: Boolean = js.native): Unit

    Definition Classes
    Element
  183. var scrollLeft: Double

    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
  184. var scrollTop: Double

    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
  185. def scrollWidth: Int

    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
  186. def setAttribute(name: String, value: String): Unit

    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
  187. def setAttributeNS(namespaceURI: String, qualifiedName: String, value: String): Unit

    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
  188. def setAttributeNode(newAttr: Attr): Attr

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

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

    MDN

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

    setAttributeNodeNS adds a new namespaced attribute node to an element.

    setAttributeNodeNS adds a new namespaced attribute node to an element.

    MDN

    Definition Classes
    Element
  190. var spellcheck: Boolean

    Definition Classes
    HTMLElement
  191. def style: CSSStyleDeclaration

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

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

    MDN

    Definition Classes
    HTMLElement
  192. def style_=(value: String): Unit

    Definition Classes
    HTMLElement
  193. def style_=(value: CSSStyleDeclaration): Unit

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

    Definition Classes
    AnyRef
  195. def tBodies: HTMLCollection

    Returns a live HTMLCollection containing all the <tbody> of the element.

    Returns a live HTMLCollection containing all the <tbody> of the element. The HTMLCollection is live and is automatically updated when the HTMLTableElement changes.

    MDN

  196. var tFoot: HTMLTableSectionElement

    Is an HTMLTableSectionElement representing the first <tfoot> that is a child of the element, or null if none is found.

    Is an HTMLTableSectionElement representing the first <tfoot> that is a child of the element, or null if none is found. When set, if the object doesn't represent a <tfoot>, a DOMException with the HierarchyRequestError name is thrown. If a correct object is given, it is inserted in the tree immediately before the first element that is neither a <caption>, a <colgroup>, nor a <thead>, or as the last child if there is no such element, and the first <tfoot> that is a child of this element is removed from the tree, if any.

    MDN

  197. var tHead: HTMLTableSectionElement

    Is an HTMLTableSectionElement representing the first <thead> that is a child of the element, or null if none is found.

    Is an HTMLTableSectionElement representing the first <thead> that is a child of the element, or null if none is found. When set, if the object doesn't represent a <thead>, a DOMException with the HierarchyRequestError name is thrown. If a correct object is given, it is inserted in the tree immediately before the first element that is neither a <caption>, nor a <colgroup>, or as the last child if there is no such element, and the first <thead> that is a child of this element is removed from the tree, if any.

    MDN

  198. var tabIndex: Int

    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
  199. def tagName: String

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

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

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

    MDN

    Definition Classes
    Node
  201. var title: String

    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
  202. def toLocaleString(): String

    Definition Classes
    Object
  203. def toString(): String

    Definition Classes
    AnyRef → Any
  204. def valueOf(): Any

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. var align: String

    Is a DOMString containing an enumerated value reflecting the align attribute.

    Is a DOMString containing an enumerated value reflecting the align attribute. It indicates the alignment of the element's contents with respect to the surrounding context. The possible values are "left", "right", and "center".

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  2. var border: String

    Is a DOMString containing the width in pixels of the border of the table.

    Is a DOMString containing the width in pixels of the border of the table. It reflects the obsolete border attribute.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  3. var cellPadding: String

    Is a DOMString containing the width in pixels of the horizontal and vertical sapce between cell content and cell borders.

    Is a DOMString containing the width in pixels of the horizontal and vertical sapce between cell content and cell borders. It reflects the obsolete cellpadding attribute.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  4. var cellSpacing: String

    Is a DOMString containing the width in pixels of the horizontal and vertical separation between cells.

    Is a DOMString containing the width in pixels of the horizontal and vertical separation between cells. It reflects the obsolete cellspacing attribute.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  5. var frame: String

    Is a DOMString containing the type of the external borders of the table.

    Is a DOMString containing the type of the external borders of the table. It reflects the obsolete frame attribute and can take one of the following values: "void", "above", "below", "hsides", "vsides", "lhs", "rhs", "box", or "border".

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  6. var rules: String

    Is a DOMString containing the type of the internal borders of the table.

    Is a DOMString containing the type of the internal borders of the table. It reflects the obsolete rules attribute and can take one of the following values: "none", "groups", "rows", "cols", or "all".

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  7. var summary: String

    Is a DOMString containing a description of the purpose or the structure of the table.

    Is a DOMString containing a description of the purpose or the structure of the table. It reflects the obsolete summary attribute.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

  8. var width: String

    Is a DOMString containing the length in pixels or in percentage of the desired width fo the entire table.

    Is a DOMString containing the length in pixels or in percentage of the desired width fo the entire table. It reflects the obsolete width attribute.

    MDN

    Annotations
    @deprecated
    Deprecated

    (Since version HTML 5) Obsolete.

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