org.scalajs.dom.raw

HTMLElement

Related Doc: package raw

class HTMLElement extends Element

The HTMLElement interface represents any HTML element. Some elements directly implement this interface, other implement it via an interface that inherit it.

MDN

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

Instance Constructors

  1. new HTMLElement()

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. var accessKey: String

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

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

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

    MDN

    Definition Classes
    EventTarget
  6. 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
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def attributes: NamedNodeMap

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

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

    MDN

    Definition Classes
    Node
  9. def blur(): Unit

    The blur method removes keyboard focus from the current element.

    The blur method removes keyboard focus from the current element.

    MDN

  10. 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
  11. 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
  12. 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
  13. var classList: DOMTokenList

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

  15. def click(): Unit

    The click method simulates a mouse click on an element.

    The click method simulates a mouse click on an element.

    MDN

  16. 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
  17. 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
  18. 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
  19. 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
  20. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. 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
  22. 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
  23. def contains(child: HTMLElement): Boolean

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

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

  26. var disabled: Boolean

  27. 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
  28. var draggable: Boolean

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

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

    Definition Classes
    AnyRef → Any
  31. var filters: AnyRef

  32. def finalize(): Unit

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

  36. def getAttribute(): 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
  37. 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
  38. 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
  39. 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
  40. 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
  41. 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
  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. 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
  44. def getElementsByClassName(classNames: String): NodeList

    Definition Classes
    Element
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. 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
  51. def hasOwnProperty(v: String): Boolean

    Definition Classes
    Object
  52. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  53. var id: String

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

    , , or 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. </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#insertAdjacentHTML" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="insertAdjacentHTML(where:String,html:String):Unit"></a> <a id="insertAdjacentHTML(String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">insertAdjacentHTML</span><span class="params">(<span name="where">where: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="html">html: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@insertAdjacentHTML(where:String,html:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Supported by FF&gt;8, Opera&gt;7, Chrome&gt;1, IE&gt;4, Safari&gt;4 </p><div class="fullcomment"><div class="comment cmt"><p>Supported by FF&gt;8, Opera&gt;7, Chrome&gt;1, IE&gt;4, Safari&gt;4 </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#insertBefore" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="insertBefore(newChild:org.scalajs.dom.raw.Node,refChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node"></a> <a id="insertBefore(Node,Node):Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">insertBefore</span><span class="params">(<span name="newChild">newChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>, <span name="refChild">refChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a> = <span class="symbol">js.native</span></span>)</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@insertBefore(newChild:org.scalajs.dom.raw.Node,refChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Inserts the first Node given in a parameter immediately before the second, child of this element, Node.</p><div class="fullcomment"><div class="comment cmt"><p>Inserts the first Node given in a parameter immediately before the second, child of this element, Node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#isContentEditable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isContentEditable:Boolean"></a> <a id="isContentEditable:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">isContentEditable</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isContentEditable:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">isContentEditable returns true if the contents of the element are editable; otherwise it returns false.</p><div class="fullcomment"><div class="comment cmt"><p>isContentEditable returns true if the contents of the element are editable; otherwise it returns false.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#isDefaultNamespace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isDefaultNamespace(namespaceURI:String):Boolean"></a> <a id="isDefaultNamespace(String):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isDefaultNamespace</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isDefaultNamespace(namespaceURI:String):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isEqualNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isEqualNode(arg:org.scalajs.dom.raw.Node):Boolean"></a> <a id="isEqualNode(Node):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isEqualNode</span><span class="params">(<span name="arg">arg: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isEqualNode(arg:org.scalajs.dom.raw.Node):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">If #targetElm is first div element in document, &quot;true&quot; will be displayed.</p><div class="fullcomment"><div class="comment cmt"><p>If #targetElm is first div element in document, &quot;true&quot; will be displayed.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.scalajs.js.Object#isPrototypeOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isPrototypeOf(v:scala.scalajs.js.Object):Boolean"></a> <a id="isPrototypeOf(Object):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isPrototypeOf</span><span class="params">(<span name="v">v: <span class="extype" name="scala.scalajs.js.Object">Object</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isPrototypeOf(v:scala.scalajs.js.Object):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isSameNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isSameNode(other:org.scalajs.dom.raw.Node):Boolean"></a> <a id="isSameNode(Node):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isSameNode</span><span class="params">(<span name="other">other: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isSameNode(other:org.scalajs.dom.raw.Node):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Tests whether two nodes are the same, that is they reference the same object.</p><div class="fullcomment"><div class="comment cmt"><p>Tests whether two nodes are the same, that is they reference the same object.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#isSupported" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isSupported(feature:String,version:String):Boolean"></a> <a id="isSupported(String,String):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isSupported</span><span class="params">(<span name="feature">feature: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="version">version: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@isSupported(feature:String,version:String):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#lang" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lang:String"></a> <a id="lang:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">lang</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@lang:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">This property gets or sets the base language of an element's attribute values and text content.</p><div class="fullcomment"><div class="comment cmt"><p>This property gets or sets the base language of an element's attribute values and text content.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Node#lastChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastChild:org.scalajs.dom.raw.Node"></a> <a id="lastChild:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lastChild</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@lastChild:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a Node representing the last direct child node of the node, or null if the node has no child.</p><div class="fullcomment"><div class="comment cmt"><p>Returns a Node representing the last direct child node of the node, or null if the node has no child.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.ParentNode#lastElementChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastElementChild:org.scalajs.dom.raw.Element"></a> <a id="lastElementChild:Element"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lastElementChild</span><span class="result">: <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@lastElementChild:org.scalajs.dom.raw.Element" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the Element that is the last child of the object, or null if there is none.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the Element that is the last child of the object, or null if there is none.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="ParentNode.html" class="extype" name="org.scalajs.dom.raw.ParentNode">ParentNode</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#localName" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="localName:String"></a> <a id="localName:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">localName</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@localName:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a DOMString representing the local part of the qualified name of an element.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#lookupNamespaceURI" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lookupNamespaceURI(prefix:String):String"></a> <a id="lookupNamespaceURI(String):String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lookupNamespaceURI</span><span class="params">(<span name="prefix">prefix: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@lookupNamespaceURI(prefix:String):String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not).</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#lookupPrefix" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lookupPrefix(namespaceURI:String):String"></a> <a id="lookupPrefix(String):String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lookupPrefix</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@lookupPrefix(namespaceURI:String):String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the prefix for a given namespaceURI if present, and null if not.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the prefix for a given namespaceURI if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#namespaceURI" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="namespaceURI:String"></a> <a id="namespaceURI:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">namespaceURI</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@namespaceURI:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The namespace URI of this node, or null if it is no namespace.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nextSibling" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nextSibling:org.scalajs.dom.raw.Node"></a> <a id="nextSibling:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nextSibling</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@nextSibling:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nodeName" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nodeName:String"></a> <a id="nodeName:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nodeName</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@nodeName:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a DOMString containing the name of the Node.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nodeType" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nodeType:Int"></a> <a id="nodeType:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nodeType</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@nodeType:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.</p><div class="fullcomment"><div class="comment cmt"><p>The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#nodeValue" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nodeValue:String"></a> <a id="nodeValue:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">nodeValue</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@nodeValue:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Is a DOMString representing the value of an object.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#normalize" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="normalize():Unit"></a> <a id="normalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">normalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@normalize():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Puts the specified node and all of its subtree into a &quot;normalized&quot; form.</p><div class="fullcomment"><div class="comment cmt"><p>Puts the specified node and all of its subtree into a &quot;normalized&quot; form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@notify():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetHeight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetHeight:Double"></a> <a id="offsetHeight:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetHeight</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@offsetHeight:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Height of an element relative to the element's offsetParent.</p><div class="fullcomment"><div class="comment cmt"><p>Height of an element relative to the element's offsetParent.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetLeft:Double"></a> <a id="offsetLeft:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">offsetLeft</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@offsetLeft:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the number of pixels that the upper left corner of the current element is offset to the left within the offsetParent node.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the number of pixels that the upper left corner of the current element is offset to the left within the offsetParent node.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetParent" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetParent:org.scalajs.dom.raw.Element"></a> <a id="offsetParent:Element"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetParent</span><span class="result">: <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@offsetParent:org.scalajs.dom.raw.Element" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">offsetParent returns a reference to the object which is the closest (nearest in the containment hierarchy) positioned containing element.</p><div class="fullcomment"><div class="comment cmt"><p>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 &quot;none&quot;. The offsetParent is useful because offsetTop and offsetLeft are relative to its padding edge.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetTop" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetTop:Double"></a> <a id="offsetTop:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetTop</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@offsetTop:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">offsetTop returns the distance of the current element relative to the top of the offsetParent node.</p><div class="fullcomment"><div class="comment cmt"><p>offsetTop returns the distance of the current element relative to the top of the offsetParent node.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#offsetWidth" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="offsetWidth:Double"></a> <a id="offsetWidth:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">offsetWidth</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@offsetWidth:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the layout width of an element.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the layout width of an element.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onabort" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onabort:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onabort:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onabort</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onabort:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onactivate" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforeactivate" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onbeforeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onbeforeactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforeactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onbeforeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforecopy" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onbeforecopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onbeforecopy:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforecopy</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onbeforecopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforecut" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onbeforecut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onbeforecut:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforecut</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onbeforecut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforedeactivate" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onbeforedeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onbeforedeactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforedeactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onbeforedeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforepaste" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onbeforepaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onbeforepaste:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onbeforepaste</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onbeforepaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onblur" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onblur:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onblur:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onblur</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onblur:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#oncanplay" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="oncanplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oncanplay:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncanplay</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oncanplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#oncanplaythrough" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="oncanplaythrough:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oncanplaythrough:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncanplaythrough</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oncanplaythrough:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onchange" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onchange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onchange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onclick" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onclick:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onclick</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#oncontextmenu" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="oncontextmenu:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="oncontextmenu:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncontextmenu</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oncontextmenu:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.Element#oncopy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="oncopy:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncopy</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oncopy:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncuechange" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="oncuechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oncuechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncuechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oncuechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.Element#oncut" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="oncut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="oncut:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oncut</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oncut:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondblclick" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondblclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="ondblclick:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondblclick</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondblclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondeactivate" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="ondeactivate:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondeactivate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondrag" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondrag:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondrag:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondrag</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondrag:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragend" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ondragend:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragend:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragend</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondragend:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The ParentNode.children read-only property returns a live HTMLCollection of child elements of the given object.</p><div class="fullcomment"><div class="comment cmt"><p>The ParentNode.children read-only property returns a live HTMLCollection of child elements of the given object.</p><p>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.).</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragenter" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondragenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragenter:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragenter</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondragenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragleave" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondragleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragleave:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragleave</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondragleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragover" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondragover:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragover:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragover</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondragover:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragstart" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondragstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondragstart:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondragstart</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondragstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondrop" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondrop:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="ondrop:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondrop</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondrop:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ondurationchange" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ondurationchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="ondurationchange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ondurationchange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ondurationchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onemptied" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onemptied:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onemptied:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onemptied</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onemptied:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onended" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onended:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onended:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onended</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onended:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocus" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onfocus:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onfocus:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onfocus</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onfocus:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocusin" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onfocusin:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onfocusin:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onfocusin</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onfocusin:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocusout" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onfocusout:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]"></a> <a id="onfocusout:Function1[FocusEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onfocusout</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="FocusEvent.html" class="extype" name="org.scalajs.dom.raw.FocusEvent">FocusEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onfocusout:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onhelp" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onhelp:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onhelp:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onhelp</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onhelp:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#oninput" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="oninput:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="oninput:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">oninput</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@oninput:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeydown" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onkeydown:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]"></a> <a id="onkeydown:Function1[KeyboardEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onkeydown</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="KeyboardEvent.html" class="extype" name="org.scalajs.dom.raw.KeyboardEvent">KeyboardEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onkeydown:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeypress" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onkeypress:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]"></a> <a id="onkeypress:Function1[KeyboardEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onkeypress</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="KeyboardEvent.html" class="extype" name="org.scalajs.dom.raw.KeyboardEvent">KeyboardEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onkeypress:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeyup" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onkeyup:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]"></a> <a id="onkeyup:Function1[KeyboardEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onkeyup</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="KeyboardEvent.html" class="extype" name="org.scalajs.dom.raw.KeyboardEvent">KeyboardEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onkeyup:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadeddata" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onloadeddata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onloadeddata:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onloadeddata</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onloadeddata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadedmetadata" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onloadedmetadata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onloadedmetadata:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onloadedmetadata</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onloadedmetadata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadstart" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onloadstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onloadstart:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onloadstart</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onloadstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousedown" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmousedown:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmousedown:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmousedown</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmousedown:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseenter" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmouseenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseenter:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseenter</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmouseenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseleave" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmouseleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseleave:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseleave</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmouseleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousemove" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmousemove:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmousemove:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmousemove</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmousemove:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseout" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmouseout:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseout:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseout</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmouseout:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseover" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmouseover:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseover:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseover</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmouseover:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseup" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmouseup:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]"></a> <a id="onmouseup:Function1[MouseEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmouseup</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="MouseEvent.html" class="extype" name="org.scalajs.dom.raw.MouseEvent">MouseEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmouseup:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousewheel" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onmousewheel:scala.scalajs.js.Function1[org.scalajs.dom.raw.WheelEvent,_]"></a> <a id="onmousewheel:Function1[WheelEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onmousewheel</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="WheelEvent.html" class="extype" name="org.scalajs.dom.raw.WheelEvent">WheelEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onmousewheel:scala.scalajs.js.Function1[org.scalajs.dom.raw.WheelEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.Element#onpaste" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="onpaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]"></a> <a id="onpaste:Function1[DragEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onpaste</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="DragEvent.html" class="extype" name="org.scalajs.dom.raw.DragEvent">DragEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onpaste:scala.scalajs.js.Function1[org.scalajs.dom.raw.DragEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onpause" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onpause:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onpause:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onpause</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onpause:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onplay" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onplay:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onplay</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onplaying" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onplaying:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onplaying:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onplaying</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onplaying:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onprogress" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onprogress:scala.scalajs.js.Function1[scala.scalajs.js.Any,_]"></a> <a id="onprogress:Function1[Any,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onprogress</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<span class="extype" name="scala.scalajs.js.Any">Any</span>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onprogress:scala.scalajs.js.Function1[scala.scalajs.js.Any,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onratechange" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onratechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onratechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onratechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onratechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onreadystatechange" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onreadystatechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onreadystatechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onreadystatechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onreadystatechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onreset" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onreset:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onreset:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onreset</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onreset:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onscroll" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onscroll:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onscroll:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onscroll</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onscroll:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onseeked" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onseeked:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onseeked:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onseeked</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onseeked:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onseeking" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onseeking:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onseeking:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onseeking</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onseeking:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onselect" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onselect:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]"></a> <a id="onselect:Function1[UIEvent,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onselect</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="UIEvent.html" class="extype" name="org.scalajs.dom.raw.UIEvent">UIEvent</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onselect:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onselectstart" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onselectstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onselectstart:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onselectstart</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onselectstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onstalled" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onstalled:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onstalled:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onstalled</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onstalled:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onsubmit" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onsubmit:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onsubmit:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onsubmit</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onsubmit:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onsuspend" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onsuspend:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onsuspend:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onsuspend</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onsuspend:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#ontimeupdate" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ontimeupdate:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="ontimeupdate:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">ontimeupdate</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ontimeupdate:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onvolumechange" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onvolumechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onvolumechange:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onvolumechange</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onvolumechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#onwaiting" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="onwaiting:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]"></a> <a id="onwaiting:Function1[Event,_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">onwaiting</span><span class="result">: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@onwaiting:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.Element#outerHTML" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="outerHTML:String"></a> <a id="outerHTML:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">outerHTML</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@outerHTML:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Gets the markup of the element including its content.</p><div class="fullcomment"><div class="comment cmt"><p>Gets the markup of the element including its content. When used as a setter, replaces the element with nodes parsed from the given string.</p><p>Supported by FF&gt;10, any Opera, any Chrome, any IE, any Safari </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#ownerDocument" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ownerDocument:org.scalajs.dom.raw.Document"></a> <a id="ownerDocument:Document"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ownerDocument</span><span class="result">: <a href="Document.html" class="extype" name="org.scalajs.dom.raw.Document">Document</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@ownerDocument:org.scalajs.dom.raw.Document" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns the Document that this node belongs to.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the Document that this node belongs to. If no document is associated with it, returns null.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#parentElement" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="parentElement:org.scalajs.dom.raw.HTMLElement"></a> <a id="parentElement:HTMLElement"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">parentElement</span><span class="result">: <a href="" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@parentElement:org.scalajs.dom.raw.HTMLElement" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.Node#parentNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="parentNode:org.scalajs.dom.raw.Node"></a> <a id="parentNode:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">parentNode</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@parentNode:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns a Node that is the parent of this node.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#prefix" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="prefix:String"></a> <a id="prefix:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">prefix</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@prefix:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#previousSibling" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="previousSibling:org.scalajs.dom.raw.Node"></a> <a id="previousSibling:Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">previousSibling</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@previousSibling:org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="scala.scalajs.js.Object#propertyIsEnumerable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="propertyIsEnumerable(v:String):Boolean"></a> <a id="propertyIsEnumerable(String):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">propertyIsEnumerable</span><span class="params">(<span name="v">v: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@propertyIsEnumerable(v:String):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="org.scalajs.dom.raw.NodeSelector#querySelector" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="querySelector(selectors:String):org.scalajs.dom.raw.Element"></a> <a id="querySelector(String):Element"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">querySelector</span><span class="params">(<span name="selectors">selectors: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@querySelector(selectors:String):org.scalajs.dom.raw.Element" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="NodeSelector.html" class="extype" name="org.scalajs.dom.raw.NodeSelector">NodeSelector</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.NodeSelector#querySelectorAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="querySelectorAll(selectors:String):org.scalajs.dom.raw.NodeList"></a> <a id="querySelectorAll(String):NodeList"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">querySelectorAll</span><span class="params">(<span name="selectors">selectors: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="NodeList.html" class="extype" name="org.scalajs.dom.raw.NodeList">NodeList</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@querySelectorAll(selectors:String):org.scalajs.dom.raw.NodeList" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="NodeSelector.html" class="extype" name="org.scalajs.dom.raw.NodeSelector">NodeSelector</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#readyState" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="readyState:scala.scalajs.js.Any"></a> <a id="readyState:Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">readyState</span><span class="result">: <span class="extype" name="scala.scalajs.js.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@readyState:scala.scalajs.js.Any" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#recordNumber" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="recordNumber:scala.scalajs.js.Any"></a> <a id="recordNumber:Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">recordNumber</span><span class="result">: <span class="extype" name="scala.scalajs.js.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@recordNumber:scala.scalajs.js.Any" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.Element#removeAttribute" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttribute():Unit"></a> <a id="removeAttribute():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttribute</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@removeAttribute():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttribute removes an attribute from the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttribute removes an attribute from the specified element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttribute" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttribute(name:String):Unit"></a> <a id="removeAttribute(String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttribute</span><span class="params">(<span name="name">name: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@removeAttribute(name:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttribute removes an attribute from the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttribute removes an attribute from the specified element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttributeNS" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttributeNS(namespaceURI:String,localName:String):Unit"></a> <a id="removeAttributeNS(String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttributeNS</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="localName">localName: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@removeAttributeNS(namespaceURI:String,localName:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttributeNS removes the specified attribute from an element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttributeNS removes the specified attribute from an element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#removeAttributeNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeAttributeNode(oldAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr"></a> <a id="removeAttributeNode(Attr):Attr"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeAttributeNode</span><span class="params">(<span name="oldAttr">oldAttr: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span>)</span><span class="result">: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@removeAttributeNode(oldAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">removeAttributeNode removes the specified attribute from the current element.</p><div class="fullcomment"><div class="comment cmt"><p>removeAttributeNode removes the specified attribute from the current element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#removeChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeChild(oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node"></a> <a id="removeChild(Node):Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeChild</span><span class="params">(<span name="oldChild">oldChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@removeChild(oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Removes a child node from the current element, which must be a child of the current node.</p><div class="fullcomment"><div class="comment cmt"><p>Removes a child node from the current element, which must be a child of the current node.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.EventTarget#removeEventListener" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="removeEventListener(type:String,listener:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_],useCapture:Boolean):Unit"></a> <a id="removeEventListener(String,Function1[Event,_],Boolean):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">removeEventListener</span><span class="params">(<span name="type">type: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="listener">listener: <span class="extype" name="scala.scalajs.js.Function1">Function1</span>[<a href="Event.html" class="extype" name="org.scalajs.dom.raw.Event">Event</a>, _]</span>, <span name="useCapture">useCapture: <span class="extype" name="scala.Boolean">Boolean</span> = <span class="symbol">js.native</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@removeEventListener(type:String,listener:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_],useCapture:Boolean):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Removes the event listener previously registered with EventTarget.addEventListener.</p><div class="fullcomment"><div class="comment cmt"><p>Removes the event listener previously registered with EventTarget.addEventListener.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="EventTarget.html" class="extype" name="org.scalajs.dom.raw.EventTarget">EventTarget</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#replaceChild" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="replaceChild(newChild:org.scalajs.dom.raw.Node,oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node"></a> <a id="replaceChild(Node,Node):Node"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">replaceChild</span><span class="params">(<span name="newChild">newChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>, <span name="oldChild">oldChild: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span>)</span><span class="result">: <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@replaceChild(newChild:org.scalajs.dom.raw.Node,oldChild:org.scalajs.dom.raw.Node):org.scalajs.dom.raw.Node" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Replaces one child Node of the current one with the second one given in parameter.</p><div class="fullcomment"><div class="comment cmt"><p>Replaces one child Node of the current one with the second one given in parameter.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollHeight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollHeight:Int"></a> <a id="scrollHeight:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">scrollHeight</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@scrollHeight:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Height of the scroll view of an element; it includes the element padding but not its margin.</p><div class="fullcomment"><div class="comment cmt"><p>Height of the scroll view of an element; it includes the element padding but not its margin.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollIntoView" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollIntoView(top:Boolean):Unit"></a> <a id="scrollIntoView(Boolean):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">scrollIntoView</span><span class="params">(<span name="top">top: <span class="extype" name="scala.Boolean">Boolean</span> = <span class="symbol">js.native</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@scrollIntoView(top:Boolean):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollLeft:Double"></a> <a id="scrollLeft:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">scrollLeft</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@scrollLeft:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.</p><div class="fullcomment"><div class="comment cmt"><p>scrollLeft gets or sets the number of pixels that an element's content is scrolled to the left.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollTop" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollTop:Double"></a> <a id="scrollTop:Double"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">scrollTop</span><span class="result">: <span class="extype" name="scala.Double">Double</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@scrollTop:Double" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.</p><div class="fullcomment"><div class="comment cmt"><p>scrollTop gets or sets the number of pixels that the content of an element is scrolled upward.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#scrollWidth" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scrollWidth:Int"></a> <a id="scrollWidth:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">scrollWidth</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@scrollWidth:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">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.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttribute" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttribute(name:String,value:String):Unit"></a> <a id="setAttribute(String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttribute</span><span class="params">(<span name="name">name: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="value">value: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@setAttribute(name:String,value:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Adds a new attribute or changes the value of an existing attribute on the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>Adds a new attribute or changes the value of an existing attribute on the specified element.</p><p>MSN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttributeNS" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttributeNS(namespaceURI:String,qualifiedName:String,value:String):Unit"></a> <a id="setAttributeNS(String,String,String):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttributeNS</span><span class="params">(<span name="namespaceURI">namespaceURI: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="qualifiedName">qualifiedName: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="value">value: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@setAttributeNS(namespaceURI:String,qualifiedName:String,value:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.</p><div class="fullcomment"><div class="comment cmt"><p>setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttributeNode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttributeNode(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr"></a> <a id="setAttributeNode(Attr):Attr"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttributeNode</span><span class="params">(<span name="newAttr">newAttr: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span>)</span><span class="result">: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@setAttributeNode(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">setAttributeNode() adds a new Attr node to the specified element.</p><div class="fullcomment"><div class="comment cmt"><p>setAttributeNode() adds a new Attr node to the specified element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Element#setAttributeNodeNS" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setAttributeNodeNS(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr"></a> <a id="setAttributeNodeNS(Attr):Attr"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setAttributeNodeNS</span><span class="params">(<span name="newAttr">newAttr: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span>)</span><span class="result">: <a href="Attr.html" class="extype" name="org.scalajs.dom.raw.Attr">Attr</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@setAttributeNodeNS(newAttr:org.scalajs.dom.raw.Attr):org.scalajs.dom.raw.Attr" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">setAttributeNodeNS adds a new namespaced attribute node to an element.</p><div class="fullcomment"><div class="comment cmt"><p>setAttributeNodeNS adds a new namespaced attribute node to an element.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#spellcheck" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="spellcheck:Boolean"></a> <a id="spellcheck:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">spellcheck</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@spellcheck:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLElement#style" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="style:org.scalajs.dom.raw.CSSStyleDeclaration"></a> <a id="style:CSSStyleDeclaration"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">style</span><span class="result">: <a href="CSSStyleDeclaration.html" class="extype" name="org.scalajs.dom.raw.CSSStyleDeclaration">CSSStyleDeclaration</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@style:org.scalajs.dom.raw.CSSStyleDeclaration" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Returns an object that represents the element's style attribute.</p><div class="fullcomment"><div class="comment cmt"><p>Returns an object that represents the element's style attribute.</p><p>MDN </p></div></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#tabIndex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="tabIndex:Int"></a> <a id="tabIndex:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">tabIndex</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@tabIndex:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Gets/sets the tab order of the current element.</p><div class="fullcomment"><div class="comment cmt"><p>Gets/sets the tab order of the current element.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.Element#tagName" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="tagName:String"></a> <a id="tagName:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">tagName</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@tagName:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">In XML (and XML-based languages such as XHTML), tagName preserves case.</p><div class="fullcomment"><div class="comment cmt"><p>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.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.Node#textContent" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="textContent:String"></a> <a id="textContent:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">textContent</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@textContent:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Is a DOMString representing the textual content of an element and all its descendants.</p><div class="fullcomment"><div class="comment cmt"><p>Is a DOMString representing the textual content of an element and all its descendants.</p><p>MDN </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#title" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="title:String"></a> <a id="title:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">title</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@title:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Establishes the text to be displayed in a 'tool tip' popup when the mouse is over the displayed node.</p><div class="fullcomment"><div class="comment cmt"><p>Establishes the text to be displayed in a 'tool tip' popup when the mouse is over the displayed node.</p><p>MDN </p></div></div> </li><li name="scala.scalajs.js.Object#toLocaleString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toLocaleString():String"></a> <a id="toLocaleString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toLocaleString</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@toLocaleString():String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@toString():String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.scalajs.js.Object#valueOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="valueOf():Any"></a> <a id="valueOf():Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">valueOf</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@valueOf():Any" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Object</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@wait():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLElement@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="org.scalajs.dom.raw.Element"> <h3>Inherited from <a href="Element.html" class="extype" name="org.scalajs.dom.raw.Element">Element</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.ParentNode"> <h3>Inherited from <a href="ParentNode.html" class="extype" name="org.scalajs.dom.raw.ParentNode">ParentNode</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.NodeSelector"> <h3>Inherited from <a href="NodeSelector.html" class="extype" name="org.scalajs.dom.raw.NodeSelector">NodeSelector</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.Node"> <h3>Inherited from <a href="Node.html" class="extype" name="org.scalajs.dom.raw.Node">Node</a></h3> </div><div class="parent" name="org.scalajs.dom.raw.EventTarget"> <h3>Inherited from <a href="EventTarget.html" class="extype" name="org.scalajs.dom.raw.EventTarget">EventTarget</a></h3> </div><div class="parent" name="scala.scalajs.js.Object"> <h3>Inherited from <span class="extype" name="scala.scalajs.js.Object">Object</span></h3> </div><div class="parent" name="scala.scalajs.js.Any"> <h3>Inherited from <span class="extype" name="scala.scalajs.js.Any">Any</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>