org.scalajs.dom.raw

HTMLInputElement

Related Doc: package raw

class HTMLInputElement extends HTMLElement

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

MDN

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

Instance Constructors

  1. new HTMLInputElement()

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

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

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

    MDN

  5. var accessKey: String

    Definition Classes
    Element
  6. 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
  7. var alt: String

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

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

    MDN

  8. def appendChild(newChild: Node): Node

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

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

    MDN

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

    Definition Classes
    Any
  10. def attributes: NamedNodeMap

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

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

    MDN

    Definition Classes
    Node
  11. var autocomplete: String

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

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

    MDN

  12. var autofocus: Boolean

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

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

    MDN

  13. def blur(): Unit

    The blur method removes keyboard focus from the current element.

    The blur method removes keyboard focus from the current element.

    MDN

    Definition Classes
    HTMLElement
  14. def checkValidity(): Boolean

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

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

    MDN

  15. var checked: Boolean

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

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

    MDN

  16. def childElementCount: Int

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

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

    MDN

    Definition Classes
    ParentNode
  17. def childNodes: NodeList

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

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

    MDN

    Definition Classes
    Node
  18. def children: HTMLCollection

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

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

    MDN

    Definition Classes
    ParentNode
  19. var classList: DOMTokenList

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

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

    Definition Classes
    Element
  20. var className: String

    Definition Classes
    HTMLElement
  21. def click(): Unit

    The click method simulates a mouse click on an element.

    The click method simulates a mouse click on an element.

    MDN

    Definition Classes
    HTMLElement
  22. 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
  23. 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
  24. 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
  25. 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
  26. def clone(): AnyRef

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

    Definition Classes
    HTMLElement
  30. var contentEditable: String

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

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

    MDN

    Definition Classes
    HTMLElement
  31. var defaultChecked: Boolean

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

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

    MDN

  32. var defaultValue: String

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

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

    MDN

  33. var dir: String

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

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

    MDN

    Definition Classes
    HTMLElement
  34. var disabled: Boolean

    Definition Classes
    HTMLElement
  35. 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
  36. var draggable: Boolean

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

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

    Definition Classes
    AnyRef → Any
  39. var files: FileList

  40. var filters: AnyRef

    Definition Classes
    HTMLElement
  41. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  42. 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
  43. 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
  44. def focus(): Unit

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

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

    MDN

    Definition Classes
    HTMLElement
  45. def form: HTMLFormElement

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

    The containing form element, if this element is in a form. If this element is not contained in a form element: HTML5 this can be the id attribute of any

    element in the same document. Even if the attribute is set on , this property will be null, if it isn't the id of a element. HTML 4 this must be null. MDN

  46. var formAction: String

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

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

  47. var formEnctype: String

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

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

  48. var formMethod: String

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

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

  49. var formNoValidate: String

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

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

  50. var formTarget: String

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

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

  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. final def getClass(): Class[_]

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

    Definition Classes
    Element
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. def hasOwnProperty(v: String): Boolean

    Definition Classes
    Object
  67. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  68. var height: String

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

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

    MDN

  69. var id: String

    Definition Classes
    Element
  70. var indeterminate: Boolean

    Indicates that a checkbox is neither on nor off.

    Indicates that a checkbox is neither on nor off.

    MDN

  71. 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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement#list" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="list:org.scalajs.dom.raw.HTMLElement"></a> <a id="list: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">list</span><span class="result">: <a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLInputElement@list:org.scalajs.dom.raw.HTMLElement" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Identifies a list of pre-defined options to suggest to the user.</p><div class="fullcomment"><div class="comment cmt"><p>Identifies a list of pre-defined options to suggest to the user. The value must be the id of a &lt;datalist&gt; element in the same document. The browser displays only options that are valid values for this input element. This attribute is ignored when the type attribute's value is hidden, checkbox, radio, file, or a button type.</p><p>MDN </p></div></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement#max" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="max:String"></a> <a id="max: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">max</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.HTMLInputElement@max:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the max HTML attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the max HTML attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#maxLength" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="maxLength:Int"></a> <a id="maxLength: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">maxLength</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.HTMLInputElement@maxLength:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the maxlength HTML attribute, containing the maximum length of text (in Unicode code points) that the value can be changed to.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the maxlength HTML attribute, containing the maximum length of text (in Unicode code points) that the value can be changed to. The constraint is evaluated only when the value is changed Note: If you set maxLength to a negative value programmatically, an exception will be thrown.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#min" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="min:String"></a> <a id="min: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">min</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.HTMLInputElement@min:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the min HTML attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the min HTML attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#multiple" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="multiple:Boolean"></a> <a id="multiple: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">multiple</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.HTMLInputElement@multiple:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the multiple HTML attribute, indicating whether more than one value is possible (e.g., multiple files).</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the multiple HTML attribute, indicating whether more than one value is possible (e.g., multiple files).</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#name" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="name:String"></a> <a id="name: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">name</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.HTMLInputElement@name:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the name HTML attribute, containing a name that identifies the element when submitting the form.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the name HTML attribute, containing a name that identifies the element when submitting the form.</p><p>MDN </p></div></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onabort" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onabort:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onactivate" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforeactivate" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onbeforeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforecopy" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onbeforecopy: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforecut" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onbeforecut: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforedeactivate" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onbeforedeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onbeforepaste" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onbeforepaste: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onblur" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onblur:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncanplay" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@oncanplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncanplaythrough" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@oncanplaythrough:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onchange" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onclick" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oncontextmenu" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@oncontextmenu:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </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.HTMLInputElement@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="yes" 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.HTMLInputElement@oncuechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </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.HTMLInputElement@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="yes" 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.HTMLInputElement@ondblclick:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondeactivate" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondeactivate:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondrag" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondrag: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragenter" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondragenter: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragleave" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondragleave: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragover" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondragover: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondragstart" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondragstart: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondrop" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondrop: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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ondurationchange" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ondurationchange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onemptied" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onemptied:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onended" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onended:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocus" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onfocus:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocusin" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onfocusin:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onfocusout" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onfocusout:scala.scalajs.js.Function1[org.scalajs.dom.raw.FocusEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onhelp" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onhelp:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#oninput" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@oninput:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeydown" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onkeydown:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeypress" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onkeypress:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onkeyup" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onkeyup:scala.scalajs.js.Function1[org.scalajs.dom.raw.KeyboardEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadeddata" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onloadeddata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadedmetadata" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onloadedmetadata:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onloadstart" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onloadstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousedown" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmousedown:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseenter" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmouseenter:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseleave" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmouseleave:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousemove" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmousemove:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseout" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmouseout:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseover" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmouseover:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmouseup" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmouseup:scala.scalajs.js.Function1[org.scalajs.dom.raw.MouseEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onmousewheel" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onmousewheel:scala.scalajs.js.Function1[org.scalajs.dom.raw.WheelEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </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.HTMLInputElement@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="yes" 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.HTMLInputElement@onpause:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onplay" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onplay:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onplaying" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onplaying:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onprogress" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onprogress:scala.scalajs.js.Function1[scala.scalajs.js.Any,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onratechange" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onratechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onreadystatechange" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onreadystatechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onreset" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onreset:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onscroll" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onscroll:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onseeked" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onseeked:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onseeking" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onseeking:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onselect" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onselect:scala.scalajs.js.Function1[org.scalajs.dom.raw.UIEvent,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onselectstart" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onselectstart:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onstalled" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onstalled:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onsubmit" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onsubmit:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onsuspend" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onsuspend:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#ontimeupdate" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@ontimeupdate:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onvolumechange" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onvolumechange:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#onwaiting" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@onwaiting:scala.scalajs.js.Function1[org.scalajs.dom.raw.Event,_]" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </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.HTMLInputElement@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.HTMLInputElement@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="yes" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLInputElement@parentElement:org.scalajs.dom.raw.HTMLElement" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </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.HTMLInputElement@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.HTMLInputElement#pattern" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="pattern:String"></a> <a id="pattern: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">pattern</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.HTMLInputElement@pattern:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the pattern HTML attribute, containing a regular expression that the control's value is checked against.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the pattern HTML attribute, containing a regular expression that the control's value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is text, search, tel, url or email; otherwise it is ignored.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#placeholder" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="placeholder:String"></a> <a id="placeholder: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">placeholder</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.HTMLInputElement@placeholder:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the placeholder HTML attribute, containing a hint to the user of what can be entered in the control.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the placeholder HTML attribute, containing a hint to the user of what can be entered in the control. The placeholder text must not contain carriage returns or line-feeds. This attribute applies when the value of the type attribute is text, search, tel, url or email; otherwise it is ignored.</p><p>MDN </p></div></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement#readOnly" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="readOnly:Boolean"></a> <a id="readOnly: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">readOnly</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.HTMLInputElement@readOnly:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the readonly HTML attribute, indicating that the user cannot modify the value of the control.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the readonly HTML attribute, indicating that the user cannot modify the value of the control. HTML5This is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#readyState" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@readyState:scala.scalajs.js.Any" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLElement#recordNumber" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@recordNumber:scala.scalajs.js.Any" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</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():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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement#required" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="required:Boolean"></a> <a id="required: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">required</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.HTMLInputElement@required:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the required HTML attribute, indicating that the user must fill in a value before submitting a form.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the required HTML attribute, indicating that the user must fill in a value before submitting a form.</p><p>MDN </p></div></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement#select" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="select():Unit"></a> <a id="select():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">select</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.HTMLInputElement@select():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.</p><div class="fullcomment"><div class="comment cmt"><p>Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#selectionEnd" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="selectionEnd:Int"></a> <a id="selectionEnd: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">selectionEnd</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.HTMLInputElement@selectionEnd:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The index of the end of selected text.</p><div class="fullcomment"><div class="comment cmt"><p>The index of the end of selected text.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#selectionStart" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="selectionStart:Int"></a> <a id="selectionStart: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">selectionStart</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.HTMLInputElement@selectionStart:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The index of the beginning of selected text.</p><div class="fullcomment"><div class="comment cmt"><p>The index of the beginning of selected text.</p><p>MDN </p></div></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement#setCustomValidity" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setCustomValidity(error:String):Unit"></a> <a id="setCustomValidity(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">setCustomValidity</span><span class="params">(<span name="error">error: <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.HTMLInputElement@setCustomValidity(error:String):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Sets a custom validity message for the element.</p><div class="fullcomment"><div class="comment cmt"><p>Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#setSelectionRange" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setSelectionRange(start:Int,end:Int):Unit"></a> <a id="setSelectionRange(Int,Int):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">setSelectionRange</span><span class="params">(<span name="start">start: <span class="extype" name="scala.Int">Int</span></span>, <span name="end">end: <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.HTMLInputElement@setSelectionRange(start:Int,end:Int):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Selects a range of text in the element (but does not focus it).</p><div class="fullcomment"><div class="comment cmt"><p>Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be &quot;forward&quot; or &quot;backward&quot; to establish the direction in which selection was set, or &quot;none&quot; if the direction is unknown or not relevant. The default is &quot;none&quot;. Specifying a selectionDirection parameter sets the value of the selectionDirection property.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#size" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="size:Int"></a> <a id="size: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">size</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.HTMLInputElement@size:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the size HTML attribute, containing size of the control.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the size HTML attribute, containing size of the control. This value is in pixels unless the value of type is text or password, in which case, it is an integer number of characters. HTML5 Applies only when type is set to text, search, tel, url, email, or password; otherwise it is ignored.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLElement#spellcheck" visbl="pub" data-isabs="false" fullComment="yes" 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.HTMLInputElement@spellcheck:Boolean" 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="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#src" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="src:String"></a> <a id="src: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">src</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.HTMLInputElement@src:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the src HTML attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of type is image; otherwise it is ignored.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the src HTML attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of type is image; otherwise it is ignored.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#status" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="status:Boolean"></a> <a id="status: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">status</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.HTMLInputElement@status:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="org.scalajs.dom.raw.HTMLInputElement#step" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="step:String"></a> <a id="step: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">step</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.HTMLInputElement@step:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the step HTML attribute, which works with min and max to limit the increments at which a numeric or date-time value can be set.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the step HTML attribute, which works with min and max to limit the increments at which a numeric or date-time value can be set. It can be the string any or a positive floating point number. If this is not set to any, the control accepts only values at multiples of the step value greater than the minimum.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#stepDown" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="stepDown(n:Int):Unit"></a> <a id="stepDown(Int):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">stepDown</span><span class="params">(<span name="n">n: <span class="extype" name="scala.Int">Int</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.HTMLInputElement@stepDown(n:Int):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Decrements the value by (step * n), where n defaults to 1 if not specified.</p><div class="fullcomment"><div class="comment cmt"><p>Decrements the value by (step * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception: if the method is not applicable to for the current type value. if the element has no step value. if the value cannot be converted to a number. if the resulting value is above the max or below the min. </p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#stepUp" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="stepUp(n:Int):Unit"></a> <a id="stepUp(Int):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">stepUp</span><span class="params">(<span name="n">n: <span class="extype" name="scala.Int">Int</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.HTMLInputElement@stepUp(n:Int):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Increments the value by (step * n), where n defaults to 1 if not specified.</p><div class="fullcomment"><div class="comment cmt"><p>Increments the value by (step * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception: if the method is not applicable to for the current type value. if the element has no step value. if the value cannot be converted to a number. if the resulting value is above the max or below the min.</p><p>MDN </p></div></div> </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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></dd></dl></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.HTMLInputElement@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.HTMLInputElement@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="org.scalajs.dom.raw.HTMLInputElement#type" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="type:String"></a> <a id="type: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">type</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.HTMLInputElement@type:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the type HTML attribute, indicating the type of control to display.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the type HTML attribute, indicating the type of control to display. See type attribute of <input> for possible values. </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#validationMessage" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="validationMessage:String"></a> <a id="validationMessage: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">validationMessage</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.HTMLInputElement@validationMessage:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">A localized message that describes the validation constraints that the control does not satisfy (if any).</p><div class="fullcomment"><div class="comment cmt"><p>A localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation (willvalidate is false), or it satisfies its constraints.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#validity" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="validity:org.scalajs.dom.raw.ValidityState"></a> <a id="validity:ValidityState"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">validity</span><span class="result">: <a href="ValidityState.html" class="extype" name="org.scalajs.dom.raw.ValidityState">ValidityState</a></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#org.scalajs.dom.raw.HTMLInputElement@validity:org.scalajs.dom.raw.ValidityState" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The validity state that this element is in. </p><div class="fullcomment"><div class="comment cmt"><p>The validity state that this element is in. </p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#value" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="value:String"></a> <a id="value: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">value</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.HTMLInputElement@value:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Current value in the control.</p><div class="fullcomment"><div class="comment cmt"><p>Current value in the control.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#valueAsNumber" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="valueAsNumber:Int"></a> <a id="valueAsNumber: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">valueAsNumber</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.HTMLInputElement@valueAsNumber:Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">The value of the element, interpreted as one of the following in order: a time value a number null if conversion is not possible</p><div class="fullcomment"><div class="comment cmt"><p>The value of the element, interpreted as one of the following in order: a time value a number null if conversion is not possible</p><p>MDN </p></div></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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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.HTMLInputElement@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><li name="org.scalajs.dom.raw.HTMLInputElement#width" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="width:String"></a> <a id="width: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">width</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.HTMLInputElement@width:String" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Reflects the width HTML attribute, which defines the width of the image displayed for the button, if the value of type is image.</p><div class="fullcomment"><div class="comment cmt"><p>Reflects the width HTML attribute, which defines the width of the image displayed for the button, if the value of type is image.</p><p>MDN </p></div></div> </li><li name="org.scalajs.dom.raw.HTMLInputElement#willValidate" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="willValidate:Boolean"></a> <a id="willValidate: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">willValidate</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.HTMLInputElement@willValidate:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <p class="shortcomment cmt">Indicates whether the element is a candidate for constraint validation.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether the element is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.</p><p>MDN </p></div></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="org.scalajs.dom.raw.HTMLElement"> <h3>Inherited from <a href="HTMLElement.html" class="extype" name="org.scalajs.dom.raw.HTMLElement">HTMLElement</a></h3> </div><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>