Package

outwatch

dom

Permalink

package dom

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. dom
  2. Handlers
  3. Tags
  4. Attributes
  5. WindowEventAttrs
  6. TouchEventAttributes
  7. TableAttributes
  8. OutWatchLifeCycleAttributes
  9. SnabbdomKeyAttributes
  10. OutWatchChildAttributes
  11. MouseEventAttributes
  12. MiscellaneousEventAttributes
  13. MiscellaneousAttributes
  14. MediaEventAttributes
  15. MediaAttributes
  16. SharedEventAttributes
  17. KeyboardEventAttributes
  18. InputAttributes
  19. GlobalAttributes
  20. FormEventAttributes
  21. ClipBoardEventAttributes
  22. AnyRef
  23. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Attribute(title: String, value: String) extends Property with Product with Serializable

    Permalink
  2. final case class AttributeStreamReceiver(attribute: String, attributeStream: Observable[Attribute]) extends Receiver with Product with Serializable

    Permalink
  3. trait Attributes extends ClipBoardEventAttributes with FormEventAttributes with GlobalAttributes with InputAttributes with KeyboardEventAttributes with MediaAttributes with MediaEventAttributes with MiscellaneousAttributes with MiscellaneousEventAttributes with MouseEventAttributes with OutWatchChildAttributes with SnabbdomKeyAttributes with OutWatchLifeCycleAttributes with TableAttributes with TouchEventAttributes with WindowEventAttrs

    Permalink

    Trait containing the contents of the Attributes module, so they can be mixed in to other objects if needed.

    Trait containing the contents of the Attributes module, so they can be mixed in to other objects if needed. This should contain "all" attributes and mix in other traits (defined above) as needed to get full coverage.

  4. final case class BoolEventEmitter(eventType: String, sink: Observer[Boolean]) extends Emitter with Product with Serializable

    Permalink
  5. final case class ChildStreamReceiver(childStream: Observable[VNode]) extends Receiver with Product with Serializable

    Permalink
  6. final case class ChildrenStreamReceiver(childrenStream: Observable[Seq[VNode]]) extends Receiver with Product with Serializable

    Permalink
  7. trait ClipBoardEventAttributes extends AnyRef

    Permalink

    Clipboard Events

  8. final case class DestroyHook(sink: Observer[Element]) extends Property with Product with Serializable

    Permalink
  9. sealed trait Emitter extends VDomModifier

    Permalink
  10. final case class EventEmitter[E <: Event](eventType: String, sink: Observer[E]) extends Emitter with Product with Serializable

    Permalink
  11. trait FormEventAttributes extends AnyRef

    Permalink

    Form Events that are triggered by actions inside an HTML form.

    Form Events that are triggered by actions inside an HTML form. However, these events apply to almost all HTML elements but are most commonly used in form elements.

  12. trait GlobalAttributes extends AnyRef

    Permalink

    Global attributes are attributes common to all HTML elements; they can be used on all elements, though the attributes may have no effect on some elements.

    Global attributes are attributes common to all HTML elements; they can be used on all elements, though the attributes may have no effect on some elements.

    Global attributes may be specified on all HTML elements, even those not specified in the standard. That means that any non-standard elements must still permit these attributes, even though using those elements means that the document is no longer HTML5-compliant. For example, HTML5-compliant browsers hide content marked as <foo hidden>...<foo>, even though <foo> is not a valid HTML element.

    MDN

  13. trait Handlers extends AnyRef

    Permalink

    Trait containing event handlers, so they can be mixed in to other objects if needed.

  14. trait InputAttributes extends AnyRef

    Permalink

    Attributes applicable only to the input element.

    Attributes applicable only to the input element. This set is broken out because it may be useful to identify the attributes of the input element separately from other groupings. The attributes permitted by the input element are likely the most complex of any element in HTML5.

    This group also contains some attributes that are applicable to the form element itself.

  15. final case class InsertHook(sink: Observer[Element]) extends Property with Product with Serializable

    Permalink
  16. final case class Key(value: String) extends Property with Product with Serializable

    Permalink
  17. trait KeyboardEventAttributes extends AnyRef

    Permalink

    Keyboard Events - triggered by user actions on the keyboard or similar user actions.

  18. trait MediaAttributes extends SharedEventAttributes

    Permalink

    Attributes applicable to media elements like <audio>, <video> etc.

  19. trait MediaEventAttributes extends AnyRef

    Permalink

    Media Events - triggered by media like videos, images and audio.

    Media Events - triggered by media like videos, images and audio. These apply to all HTML elements, but they are most common in media elements, like <audio>, <embed>, <img>, <object>, and <video>.

  20. trait MiscellaneousAttributes extends AnyRef

    Permalink

    Miscellaneous attributes that are applicable to one or more elements.

  21. trait MiscellaneousEventAttributes extends SharedEventAttributes

    Permalink

    Miscellaneous Events.

  22. trait MouseEventAttributes extends AnyRef

    Permalink

    Mouse Events: triggered by a mouse, or similar user actions.

  23. final case class NumberEventEmitter(eventType: String, sink: Observer[Double]) extends Emitter with Product with Serializable

    Permalink
  24. trait OutWatchChildAttributes extends AnyRef

    Permalink

    OutWatch specific attributes used to asign child nodes to a VNode.

  25. trait OutWatchLifeCycleAttributes extends AnyRef

    Permalink

    Outwatch component life cycle hooks.

  26. sealed trait Property extends VDomModifier

    Permalink
  27. sealed trait Receiver extends VDomModifier

    Permalink
  28. trait SharedEventAttributes extends AnyRef

    Permalink
  29. trait SnabbdomKeyAttributes extends AnyRef

    Permalink

    Snabbdom Key Attribute

  30. final case class StringEventEmitter(eventType: String, sink: Observer[String]) extends Emitter with Product with Serializable

    Permalink
  31. trait TableAttributes extends AnyRef

    Permalink

    Attributes applicable to the table element and its children.

  32. trait Tags extends AnyRef

    Permalink

    Trait that contains all tags, so they can be mixed in to other objects if needed.

  33. trait TouchEventAttributes extends AnyRef

    Permalink

    Touch events.

  34. final case class UpdateHook(sink: Observer[(Element, Element)]) extends Property with Product with Serializable

    Permalink
  35. sealed trait VDomModifier extends Any

    Permalink
  36. sealed trait VNode extends VDomModifier

    Permalink
  37. trait WindowEventAttrs extends SharedEventAttributes

    Permalink

    Window events.

Value Members

  1. object Aria

    Permalink

    ARIA is a set of special accessibility attributes which can be added to any markup, but is especially suited to HTML.

    ARIA is a set of special accessibility attributes which can be added to any markup, but is especially suited to HTML. The role attribute defines what the general type of object is (such as an article, alert, or slider). Additional ARIA attributes provide other useful properties, such as a description for a form or the current value of a progressbar.

    MDN

    Definition Classes
    GlobalAttributes
  2. object Attributes extends Attributes

    Permalink
  3. object Handlers extends Handlers

    Permalink
  4. object InputType

    Permalink

    The type of control to display.

    The type of control to display. The default type is text, if this attribute is not specified.

    MDN

    Definition Classes
    InputAttributes
  5. object OutWatch

    Permalink
  6. object Tags extends Tags

    Permalink
  7. object VDomModifier

    Permalink
  8. def a(args: VDomModifier*): VNode

    Permalink

    Represents a hyperlink, linking to another resource.

    Represents a hyperlink, linking to another resource.

    MDN

    Definition Classes
    Tags
  9. def abbr(args: VDomModifier*): VNode

    Permalink

    An abbreviation or acronym; the expansion of the abbreviation can be represented in the title attribute.

    An abbreviation or acronym; the expansion of the abbreviation can be represented in the title attribute.

    MDN

    Definition Classes
    Tags
  10. lazy val abort: EventEmitterBuilder[Event]

    Permalink

    Script to be run on abort.

    Script to be run on abort.

    Definition Classes
    MediaEventAttributes
  11. lazy val accept: AttributeBuilder[Any]

    Permalink

    If the value of the type attribute is file, this attribute indicates the types of files that the server accepts; otherwise it is ignored.

    If the value of the type attribute is file, this attribute indicates the types of files that the server accepts; otherwise it is ignored.

    MDN

    Definition Classes
    InputAttributes
  12. lazy val acceptCharset: AttributeBuilder[Any]

    Permalink

    A space- or comma-delimited list of character encodings that the server accepts.

    A space- or comma-delimited list of character encodings that the server accepts. The browser uses them in the order in which they are listed. The default value, the reserved string "UNKNOWN", indicates the same encoding as that of the document containing the form element. In previous versions of HTML, the different character encodings could be delimited by spaces or commas. In HTML5, only spaces are allowed as delimiters.

    MDN

    Definition Classes
    InputAttributes
  13. lazy val accesskey: AttributeBuilder[String]

    Permalink

    Specifies a shortcut key to activate/focus an element.

    Specifies a shortcut key to activate/focus an element.

    Definition Classes
    GlobalAttributes
  14. lazy val action: AttributeBuilder[Any]

    Permalink

    The URI of a program that processes the information submitted via the form.

    The URI of a program that processes the information submitted via the form. This value can be overridden by a formaction attribute on a button or input element.

    MDN

    Definition Classes
    InputAttributes
  15. def address(args: VDomModifier*): VNode

    Permalink

    Defines a section containing contact information.

    Defines a section containing contact information.

    MDN

    Definition Classes
    Tags
  16. lazy val align: AttributeBuilder[Any]

    Permalink

    Specifies the horizontal alignment of the element.

    Specifies the horizontal alignment of the element. Mostly obsolete since HTML5

    MDN

    Definition Classes
    MiscellaneousAttributes
  17. lazy val alt: AttributeBuilder[String]

    Permalink

    This attribute defines the alternative text describing the image.

    This attribute defines the alternative text describing the image. Users will see this displayed if the image URL is wrong, the image is not in one of the supported formats, or until the image is downloaded.

    MDN

    Definition Classes
    MiscellaneousAttributes
  18. def area(args: VDomModifier*): VNode

    Permalink

    In conjunction with map, defines an image map

    In conjunction with map, defines an image map

    MDN

    Definition Classes
    Tags
  19. def article(args: VDomModifier*): VNode

    Permalink

    Defines self-contained content that could exist independently of the rest of the content.

    Defines self-contained content that could exist independently of the rest of the content.

    MDN

    Definition Classes
    Tags
  20. def aside(args: VDomModifier*): VNode

    Permalink

    Defines some content loosely related to the page content.

    Defines some content loosely related to the page content. If it is removed, the remaining content still makes sense.

    MDN

    Definition Classes
    Tags
  21. def audio(args: VDomModifier*): VNode

    Permalink

    Represents a sound or an audio stream.

    Represents a sound or an audio stream.

    MDN

    Definition Classes
    Tags
  22. lazy val autocomplete: AttributeBuilder[Any]

    Permalink

    This attribute indicates whether the value of the control can be automatically completed by the browser.

    This attribute indicates whether the value of the control can be automatically completed by the browser. This attribute is 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" and "on"

    MDN

    Definition Classes
    InputAttributes
  23. lazy val autofocus: BoolAttributeBuilder

    Permalink

    This Boolean attribute lets you specify 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.

    This Boolean attribute lets you specify 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, which is a Boolean. It cannot be applied if the type attribute is set to hidden (that is, you cannot automatically set focus to a hidden control).

    MDN

    Definition Classes
    InputAttributes
  24. lazy val autoplay: BoolAttributeBuilder

    Permalink

    A Boolean attribute; if specified, the video automatically begins to play back as soon as it can do so without stopping to finish loading the data.

    A Boolean attribute; if specified, the video automatically begins to play back as soon as it can do so without stopping to finish loading the data.

    MDN

    Definition Classes
    MediaAttributes
  25. def b(args: VDomModifier*): VNode

    Permalink

    Bold text.

    Bold text.

    MDN

    Definition Classes
    Tags
  26. def base(args: VDomModifier*): VNode

    Permalink

    Defines the base URL for relative URLs in the page.

    Defines the base URL for relative URLs in the page.

    MDN

    Definition Classes
    Tags
  27. def bdi(args: VDomModifier*): VNode

    Permalink

    Represents text that must be isolated from its surrounding for bidirectional text formatting.

    Represents text that must be isolated from its surrounding for bidirectional text formatting. It allows embedding a span of text with a different, or unknown, directionality.

    MDN

    Definition Classes
    Tags
  28. def bdo(args: VDomModifier*): VNode

    Permalink

    Represents the directionality of its children, in order to explicitly override the Unicode bidirectional algorithm.

    Represents the directionality of its children, in order to explicitly override the Unicode bidirectional algorithm.

    MDN

    Definition Classes
    Tags
  29. def blockquote(args: VDomModifier*): VNode

    Permalink

    Represents a content that is quoted from another source.

    Represents a content that is quoted from another source.

    MDN

    Definition Classes
    Tags
  30. lazy val blur: EventEmitterBuilder[InputEvent]

    Permalink

    The blur event is raised when an element loses focus.

    The blur event is raised when an element loses focus.

    MDN

    Definition Classes
    FormEventAttributes
  31. def body(args: VDomModifier*): VNode

    Permalink

    Represents the content of an HTML document.

    Represents the content of an HTML document. There is only one body element in a document.

    MDN

    Definition Classes
    Tags
  32. def br(args: VDomModifier*): VNode

    Permalink

    Represents a line break.

    Represents a line break.

    MDN

    Definition Classes
    Tags
  33. lazy val buffered: BoolAttributeBuilder

    Permalink

    An attribute you can read to determine the time ranges of the buffered media.

    An attribute you can read to determine the time ranges of the buffered media. This attribute contains a TimeRanges object.

    MDN

    Definition Classes
    MediaAttributes
  34. def button(args: VDomModifier*): VNode

    Permalink

    A button

    A button

    MDN

    Definition Classes
    Tags
  35. lazy val canplay: EventEmitterBuilder[Event]

    Permalink

    Script to be run when a file is ready to start playing (when it has buffered enough to begin).

    Script to be run when a file is ready to start playing (when it has buffered enough to begin).

    Definition Classes
    MediaEventAttributes
  36. lazy val canplaythrough: EventEmitterBuilder[Event]

    Permalink

    Script to be run when a file can be played all the way to the end without pausing for buffering.

    Script to be run when a file can be played all the way to the end without pausing for buffering.

    Definition Classes
    MediaEventAttributes
  37. def canvas(args: VDomModifier*): VNode

    Permalink

    Represents a bitmap area that scripts can use to render graphics like graphs, games or any visual images on the fly.

    Represents a bitmap area that scripts can use to render graphics like graphs, games or any visual images on the fly.

    MDN

    Definition Classes
    Tags
  38. def caption(args: VDomModifier*): VNode

    Permalink

    The title of a table.

    The title of a table.

    MDN

    Definition Classes
    Tags
  39. lazy val change: EventEmitterBuilder[InputEvent]

    Permalink

    The change event is fired for input, select, and textarea elements when a change to the element's value is committed by the user.

    The change event is fired for input, select, and textarea elements when a change to the element's value is committed by the user.

    MDN

    Definition Classes
    FormEventAttributes
  40. lazy val charset: AttributeBuilder[Any]

    Permalink

    Declares the character encoding of the page or script.

    Declares the character encoding of the page or script. Used on meta and script elements.

    MDN

    Definition Classes
    MiscellaneousAttributes
  41. lazy val checked: BoolAttributeBuilder

    Permalink

    When the value of the type attribute is radio or checkbox, the presence of this Boolean attribute indicates that the control is selected by default; otherwise it is ignored.

    When the value of the type attribute is radio or checkbox, the presence of this Boolean attribute indicates that the control is selected by default; otherwise it is ignored.

    MDN

    Definition Classes
    InputAttributes
  42. lazy val child: ChildStreamReceiverBuilder.type

    Permalink

    A special attribute that takes a stream of single child nodes.

    A special attribute that takes a stream of single child nodes.

    Definition Classes
    OutWatchChildAttributes
  43. lazy val children: ChildrenStreamReceiverBuilder.type

    Permalink

    A special attribute that takes a stream of lists of child nodes.

    A special attribute that takes a stream of lists of child nodes.

    Definition Classes
    OutWatchChildAttributes
  44. def cite(args: VDomModifier*): VNode

    Permalink

    Represents the title of a work being cited.

    Represents the title of a work being cited.

    MDN

    Definition Classes
    Tags
  45. lazy val class: AttributeBuilder[String]

    Permalink

    This attribute is a space-separated list of the classes of the element.

    This attribute is a space-separated list of the classes of the element. Classes allows CSS and Javascript to select and access specific elements via the class selectors or functions like the DOM method document.getElementsByClassName. You can use cls as an alias for this attribute so you don't have to backtick-escape this attribute.

    MDN

    Definition Classes
    GlobalAttributes
  46. lazy val className: AttributeBuilder[String]

    Permalink

    Shorthand for the class attribute.

    Shorthand for the class attribute.

    Definition Classes
    GlobalAttributes
  47. lazy val click: EventEmitterBuilder[MouseEvent]

    Permalink

    The click event is raised when the user clicks on an element.

    The click event is raised when the user clicks on an element. The click event will occur after the mousedown and mouseup events.

    MDN

    Definition Classes
    MouseEventAttributes
  48. lazy val cls: AttributeBuilder[String]

    Permalink

    Shorthand for the class attribute.

    Shorthand for the class attribute.

    Definition Classes
    GlobalAttributes
  49. def code(args: VDomModifier*): VNode

    Permalink

    Represents computer code.

    Represents computer code.

    MDN

    Definition Classes
    Tags
  50. def col(args: VDomModifier*): VNode

    Permalink

    A single column.

    A single column.

    MDN

    Definition Classes
    Tags
  51. def colgroup(args: VDomModifier*): VNode

    Permalink

    A set of columns.

    A set of columns.

    MDN

    Definition Classes
    Tags
  52. lazy val cols: AttributeBuilder[Double]

    Permalink

    The visible width of the text control, in average character widths.

    The visible width of the text control, in average character widths. If it is specified, it must be a positive integer. If it is not specified, the default value is 20 (HTML5).

    MDN

    Definition Classes
    InputAttributes
  53. lazy val colspan: AttributeBuilder[Any]

    Permalink

    This attribute contains a non-negative integer value that indicates for how many columns the cell extends.

    This attribute contains a non-negative integer value that indicates for how many columns the cell extends. Its default value is 1; if its value is set to 0, it extends until the end of the <colgroup>, even if implicitly defined, that the cell belongs to. Values higher than 1000 will be considered as incorrect and will be set to the default value (1).

    MDN

    Definition Classes
    TableAttributes
  54. lazy val content: AttributeBuilder[String]

    Permalink

    This attribute gives the value associated with the http-equiv or name attribute, depending of the context.

    This attribute gives the value associated with the http-equiv or name attribute, depending of the context.

    MDN

    Definition Classes
    MiscellaneousAttributes
  55. lazy val contenteditable: BoolAttributeBuilder

    Permalink

    Specifies whether the content of an element is editable or not.

    Specifies whether the content of an element is editable or not.

    Definition Classes
    GlobalAttributes
  56. lazy val contextmenu: EventEmitterBuilder[MouseEvent]

    Permalink

    Script to be run when a context menu is triggered

    Script to be run when a context menu is triggered

    Definition Classes
    MouseEventAttributes
  57. lazy val controls: BoolAttributeBuilder

    Permalink

    If this attribute is present, the browser will offer controls to allow the user to control video playback, including volume, seeking, and pause/resume playback.

    If this attribute is present, the browser will offer controls to allow the user to control video playback, including volume, seeking, and pause/resume playback.

    MDN

    Definition Classes
    MediaAttributes
  58. lazy val coords: AttributeBuilder[Any]

    Permalink

    A set of values specifying the coordinates of the hot-spot region.

    A set of values specifying the coordinates of the hot-spot region. The number and meaning of the values depend upon the value specified for the shape attribute. For a rect or rectangle shape, the coords value is two x,y pairs: left, top, right, and bottom. For a circle shape, the value is x,y,r where x,y is a pair specifying the center of the circle and r is a value for the radius. For a poly or polygon shape, the value is a set of x,y pairs for each point in the polygon: x1,y1,x2,y2,x3,y3, and so on. In HTML4, the values are numbers of pixels or percentages, if a percent sign (%) is appended; in HTML5, the values are numbers of CSS pixels.

    MDN

    Definition Classes
    MiscellaneousAttributes
  59. lazy val copy: EventEmitterBuilder[ClipboardEvent]

    Permalink

    Fires when the user copies the content of an element.

    Fires when the user copies the content of an element.

    Definition Classes
    ClipBoardEventAttributes
  60. def createBoolHandler(defaultValues: Boolean*): Observable[Boolean] with Sink[Boolean]

    Permalink
    Definition Classes
    Handlers
  61. def createClipboardHandler(): Observable[ClipboardEvent] with Sink[ClipboardEvent]

    Permalink
    Definition Classes
    Handlers
  62. def createDragHandler(): Observable[DragEvent] with Sink[DragEvent]

    Permalink
    Definition Classes
    Handlers
  63. def createHandler[T](defaultValues: T*): Observable[T] with Sink[T]

    Permalink
    Definition Classes
    Handlers
  64. def createInputHandler(): Observable[InputEvent] with Sink[InputEvent]

    Permalink
    Definition Classes
    Handlers
  65. def createKeyboardHandler(): Observable[KeyboardEvent] with Sink[KeyboardEvent]

    Permalink
    Definition Classes
    Handlers
  66. def createMouseHandler(): Observable[MouseEvent] with Sink[MouseEvent]

    Permalink
    Definition Classes
    Handlers
  67. def createNumberHandler(defaultValues: Double*): Observable[Double] with Sink[Double]

    Permalink
    Definition Classes
    Handlers
  68. def createStringHandler(defaultValues: String*): Observable[String] with Sink[String]

    Permalink
    Definition Classes
    Handlers
  69. lazy val crossorigin: AttributeBuilder[String]

    Permalink

    This enumerated attribute indicates whether to use CORS to fetch the related image.

    This enumerated attribute indicates whether to use CORS to fetch the related image. CORS-enabled resources can be reused in the <canvas> element without being tainted. The allowed values are:

    anonymous: Sends a cross-origin request without a credential. In other words, it sends the Origin: HTTP header without a cookie, X.509 certificate, or performing HTTP Basic authentication. If the server does not give credentials to the origin site (by not setting the Access-Control-Allow-Origin: HTTP header), the image will be tainted, and its usage restricted.

    use-credentials: Sends a cross-origin request with a credential. In other words, it sends the Origin: HTTP header with a cookie, a certificate, or performing HTTP Basic authentication. If the server does not give credentials to the origin site (through Access-Control-Allow-Credentials: HTTP header), the image will be tainted and its usage restricted.

    When not present, the resource is fetched without a CORS request (i.e. without sending the Origin: HTTP header), preventing its non-tainted used in <canvas> elements. If invalid, it is handled as if the enumerated keyword anonymous was used. See CORS settings attributes for additional information.

    MDN

    Definition Classes
    MediaAttributes
  70. lazy val cuechange: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the cue changes in a <track> element.

    Script to be run when the cue changes in a <track> element.

    Definition Classes
    MediaEventAttributes
  71. lazy val cut: EventEmitterBuilder[ClipboardEvent]

    Permalink

    Fires when the user cuts the content of an element.

    Fires when the user cuts the content of an element.

    Definition Classes
    ClipBoardEventAttributes
  72. lazy val data: DynamicAttributeBuilder[Any]

    Permalink

    This class of attributes, called custom data attributes, allows proprietary information to be exchanged between the HTML and its DOM representation that may be used by scripts.

    This class of attributes, called custom data attributes, allows proprietary information to be exchanged between the HTML and its DOM representation that may be used by scripts. All such custom data are available via the HTMLElement interface of the element the attribute is set on. The HTMLElement.dataset property gives access to them.

    The * in data-* may be replaced by any name following the production rule of xml names with the following restrictions:

    the name must not start with xml, whatever case is used for these letters; the name must not contain any semicolon (U+003A); the name must not contain capital A to Z letters.

    Note that the HTMLElement.dataset attribute is a StringMap and the name of the custom data attribute data-test-value will be accessible via HTMLElement.dataset.testValue as any dash (U+002D) is replaced by the capitalization of the next letter (camelCase).

    MDN

    Definition Classes
    GlobalAttributes
  73. def dataElement(args: VDomModifier*): VNode

    Permalink

    Links a given content with a machine-readable translation.

    Links a given content with a machine-readable translation. If the content is time- or date-related, the <time> element must be used.

    MDN

    Definition Classes
    Tags
  74. def datalist(args: VDomModifier*): VNode

    Permalink

    A set of predefined options for other controls.

    A set of predefined options for other controls.

    MDN

    Definition Classes
    Tags
  75. lazy val datetime: AttributeBuilder[Any]

    Permalink

    This attribute indicates the time and date of the element and must be a valid date with an optional time string.

    This attribute indicates the time and date of the element and must be a valid date with an optional time string. If the value cannot be parsed as a date with an optional time string, the element does not have an associated time stamp.

    MDN

    Definition Classes
    MiscellaneousAttributes
  76. lazy val dblclick: EventEmitterBuilder[MouseEvent]

    Permalink

    The dblclick event is fired when a pointing device button (usually a mouse button) is clicked twice on a single element.

    The dblclick event is fired when a pointing device button (usually a mouse button) is clicked twice on a single element.

    MDN

    Definition Classes
    MouseEventAttributes
  77. def dd(args: VDomModifier*): VNode

    Permalink

    Represents the definition of the terms immediately listed before it.

    Represents the definition of the terms immediately listed before it.

    MDN

    Definition Classes
    Tags
  78. lazy val default: BoolAttributeBuilder

    Permalink

    This attribute indicates that the track should be enabled unless the user's preferences indicate that another track is more appropriate.

    This attribute indicates that the track should be enabled unless the user's preferences indicate that another track is more appropriate. This may only be used on one track element per media element.

    MDN

    Definition Classes
    MediaAttributes
  79. def del(args: VDomModifier*): VNode

    Permalink

    Defines a removal from the document.

    Defines a removal from the document.

    MDN

    Definition Classes
    Tags
  80. lazy val destroy: DestroyHookBuilder.type

    Permalink

    Lifecycle hook for component destruction.

    Lifecycle hook for component destruction.

    Definition Classes
    OutWatchLifeCycleAttributes
  81. def details(args: VDomModifier*): VNode

    Permalink

    A widget from which the user can obtain additional information or controls.

    A widget from which the user can obtain additional information or controls.

    MDN

    Definition Classes
    Tags
  82. def dfn(args: VDomModifier*): VNode

    Permalink

    Represents a term whose definition is contained in its nearest ancestor content.

    Represents a term whose definition is contained in its nearest ancestor content.

    MDN

    Definition Classes
    Tags
  83. def dialog(args: VDomModifier*): VNode

    Permalink

    Represents a dialog box or other interactive component, such as an inspector or window.

    Represents a dialog box or other interactive component, such as an inspector or window.

    MDN

    Definition Classes
    Tags
  84. lazy val dir: AttributeBuilder[Any]

    Permalink

    Specifies the text direction for the content in an element.

    Specifies the text direction for the content in an element. The valid values are:

    ltr: Default. Left-to-right text direction

    rtl: Right-to-left text direction

    auto: Let the browser figure out the text direction, based on the content, (only recommended if the text direction is unknown)

    Definition Classes
    GlobalAttributes
  85. lazy val disabled: BoolAttributeBuilder

    Permalink

    This Boolean attribute indicates that the form control is not available for interaction.

    This Boolean attribute indicates that the form control is not available for interaction. In particular, the click event will not be dispatched on disabled controls. Also, a disabled control's value isn't submitted with the form.

    This attribute is ignored if the value of the type attribute is hidden.

    MDN

    Definition Classes
    MiscellaneousAttributes
  86. def div(args: VDomModifier*): VNode

    Permalink

    Represents a generic container with no special meaning.

    Represents a generic container with no special meaning.

    MDN

    Definition Classes
    Tags
  87. def dl(args: VDomModifier*): VNode

    Permalink

    Defines a definition list; a list of terms and their associated definitions.

    Defines a definition list; a list of terms and their associated definitions.

    MDN

    Definition Classes
    Tags
  88. lazy val download: AttributeBuilder[Any]

    Permalink

    This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file.

    This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want). There are no restrictions on allowed values, though / and \ are converted to underscores. Most file systems limit some punctuation in file names, and browsers will adjust the suggested name accordingly.

    MDN HTML5

    Definition Classes
    MiscellaneousAttributes
  89. lazy val drag: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run when an element is dragged.

    Script to be run when an element is dragged.

    Definition Classes
    MouseEventAttributes
  90. lazy val dragend: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run at the end of a drag operation.

    Script to be run at the end of a drag operation.

    Definition Classes
    MouseEventAttributes
  91. lazy val dragenter: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run when an element has been dragged to a valid drop target.

    Script to be run when an element has been dragged to a valid drop target.

    Definition Classes
    MouseEventAttributes
  92. lazy val draggable: AttributeBuilder[Any]

    Permalink

    A Boolean attribute that specifies whether an element is draggable or not.

    A Boolean attribute that specifies whether an element is draggable or not.

    Definition Classes
    GlobalAttributes
  93. lazy val dragleave: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run when an element leaves a valid drop target.

    Script to be run when an element leaves a valid drop target.

    Definition Classes
    MouseEventAttributes
  94. lazy val dragover: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run when an element is being dragged over a valid drop target.

    Script to be run when an element is being dragged over a valid drop target.

    Definition Classes
    MouseEventAttributes
  95. lazy val dragstart: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run at the start of a drag operation.

    Script to be run at the start of a drag operation.

    Definition Classes
    MouseEventAttributes
  96. lazy val drop: EventEmitterBuilder[DragEvent]

    Permalink

    Script to be run when dragged element is being dropped.

    Script to be run when dragged element is being dropped.

    Definition Classes
    MouseEventAttributes
  97. lazy val dropzone: AttributeBuilder[Any]

    Permalink

    Specifies whether the dragged data is copied, moved, or linked, when dropped.

    Specifies whether the dragged data is copied, moved, or linked, when dropped.

    Definition Classes
    GlobalAttributes
  98. def dt(args: VDomModifier*): VNode

    Permalink

    Represents a term defined by the next dd

    Represents a term defined by the next dd

    MDN

    Definition Classes
    Tags
  99. lazy val durationchange: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the length of the media changes.

    Script to be run when the length of the media changes.

    Definition Classes
    MediaEventAttributes
  100. def em(args: VDomModifier*): VNode

    Permalink

    Represents emphasized text.

    Represents emphasized text.

    MDN

    Definition Classes
    Tags
  101. def embed(args: VDomModifier*): VNode

    Permalink

    Represents a integration point for an external, often non-HTML, application or interactive content.

    Represents a integration point for an external, often non-HTML, application or interactive content.

    MDN

    Definition Classes
    Tags
  102. lazy val emptied: EventEmitterBuilder[Event]

    Permalink

    Script to be run when something bad happens and the file is suddenly unavailable (like unexpectedly disconnects).

    Script to be run when something bad happens and the file is suddenly unavailable (like unexpectedly disconnects).

    Definition Classes
    MediaEventAttributes
  103. lazy val enctype: AttributeBuilder[Any]

    Permalink

    The enctype attribute provides the encoding type of the form when it is submitted (for forms with a method of "POST").

    The enctype attribute provides the encoding type of the form when it is submitted (for forms with a method of "POST").

    Definition Classes
    InputAttributes
  104. lazy val ended: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the media has reach the end (a useful event for messages like "thanks for listening").

    Script to be run when the media has reach the end (a useful event for messages like "thanks for listening").

    Definition Classes
    MediaEventAttributes
  105. lazy val error: EventEmitterBuilder[Nothing]

    Permalink

    Script to be run when an error occurs when the file is being loaded.

    Script to be run when an error occurs when the file is being loaded.

    Definition Classes
    SharedEventAttributes
  106. def fieldset(args: VDomModifier*): VNode

    Permalink

    A set of fields.

    A set of fields.

    MDN

    Definition Classes
    Tags
  107. def figcaption(args: VDomModifier*): VNode

    Permalink

    Represents the legend of a figure.

    Represents the legend of a figure.

    MDN

    Definition Classes
    Tags
  108. def figure(args: VDomModifier*): VNode

    Permalink

    Represents a figure illustrated as part of the document.

    Represents a figure illustrated as part of the document.

    MDN

    Definition Classes
    Tags
  109. lazy val focus: EventEmitterBuilder[InputEvent]

    Permalink

    The focus event is raised when the user sets focus on the given element.

    The focus event is raised when the user sets focus on the given element.

    MDN

    Definition Classes
    FormEventAttributes
  110. def footer(args: VDomModifier*): VNode

    Permalink

    Defines the footer for a page or section.

    Defines the footer for a page or section. It often contains a copyright notice, some links to legal information, or addresses to give feedback.

    MDN

    Definition Classes
    Tags
  111. lazy val for: AttributeBuilder[Any]

    Permalink

    Describes elements which belongs to this one.

    Describes elements which belongs to this one. Used on labels and output elements.

    MDN

    Definition Classes
    InputAttributes
  112. lazy val forLabel: AttributeBuilder[Any]

    Permalink

    Shorthand for the for attribute.

    Shorthand for the for attribute.

    Definition Classes
    InputAttributes
  113. def form(args: VDomModifier*): VNode

    Permalink

    Represents a form, consisting of controls, that can be submitted to a server for processing.

    Represents a form, consisting of controls, that can be submitted to a server for processing.

    MDN

    Definition Classes
    Tags
  114. lazy val formaction: AttributeBuilder[Any]

    Permalink

    The formaction attribute provides the URL that will process the input control when the form is submitted and overrides the default action attribute of the form element.

    The formaction attribute provides the URL that will process the input control when the form is submitted and overrides the default action attribute of the form element. This should be used only with input elements of type submit or image.

    Definition Classes
    InputAttributes
  115. lazy val formenctype: AttributeBuilder[Any]

    Permalink

    The formenctype attribute provides the encoding type of the form when it is submitted (for forms with a method of "POST") and overrides the default enctype attribute of the form element.

    The formenctype attribute provides the encoding type of the form when it is submitted (for forms with a method of "POST") and overrides the default enctype attribute of the form element. This should be used only with the input elements of type "submit" or "image"

    Definition Classes
    InputAttributes
  116. lazy val formmethod: AttributeBuilder[Any]

    Permalink

    The formmethod attribute specifies the HTTP Method the form should use when it is submitted and overrides the default method attribute of the form element.

    The formmethod attribute specifies the HTTP Method the form should use when it is submitted and overrides the default method attribute of the form element. This should be used only with the input elements of type "submit" or "image".

    Definition Classes
    InputAttributes
  117. lazy val formnovalidate: AttributeBuilder[Any]

    Permalink

    The formnovalidate Boolean attribute specifies that the input of the form should not be validated upon submit and overrides the default novalidate attribute of the form.

    The formnovalidate Boolean attribute specifies that the input of the form should not be validated upon submit and overrides the default novalidate attribute of the form. This should only be used with input elements of of type "submit".

    Definition Classes
    InputAttributes
  118. lazy val formtarget: AttributeBuilder[Any]

    Permalink

    The formtarget provides a name or keyword that indicates where to display the response that is received after submitting the form and overrides the target attribute of them form element.

    The formtarget provides a name or keyword that indicates where to display the response that is received after submitting the form and overrides the target attribute of them form element. This should only be used with the input elements of type "submit" or "image"

    Definition Classes
    InputAttributes
  119. def h1(args: VDomModifier*): VNode

    Permalink

    Heading level 1

    Heading level 1

    MDN

    Definition Classes
    Tags
  120. def h2(args: VDomModifier*): VNode

    Permalink

    Heading level 2

    Heading level 2

    MDN

    Definition Classes
    Tags
  121. def h3(args: VDomModifier*): VNode

    Permalink

    Heading level 3

    Heading level 3

    MDN

    Definition Classes
    Tags
  122. def h4(args: VDomModifier*): VNode

    Permalink

    Heading level 4

    Heading level 4

    MDN

    Definition Classes
    Tags
  123. def h5(args: VDomModifier*): VNode

    Permalink

    Heading level 5

    Heading level 5

    MDN

    Definition Classes
    Tags
  124. def h6(args: VDomModifier*): VNode

    Permalink

    Heading level 6

    Heading level 6

    MDN

    Definition Classes
    Tags
  125. def head(args: VDomModifier*): VNode

    Permalink

    Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

    Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

    MDN

    Definition Classes
    Tags
  126. def header(args: VDomModifier*): VNode

    Permalink

    Defines the header of a page or section.

    Defines the header of a page or section. It often contains a logo, the title of the Web site, and a navigational table of content.

    MDN

    Definition Classes
    Tags
  127. lazy val headers: AttributeBuilder[Any]

    Permalink

    This attribute contains a list of space-separated strings, each corresponding to the id attributes of <th> elements that relate to this element.

    This attribute contains a list of space-separated strings, each corresponding to the id attributes of <th> elements that relate to this element.

    MDN

    Definition Classes
    TableAttributes
  128. lazy val height: AttributeBuilder[Double]

    Permalink

    The height attribute specifies the height of an input element of type "image".

    The height attribute specifies the height of an input element of type "image".

    Definition Classes
    MiscellaneousAttributes
  129. package helpers

    Permalink
  130. lazy val hidden: BoolAttributeBuilder

    Permalink

    Specifies that an element is not yet, or is no longer, relevant and consequently hidden from view of the user.

    Specifies that an element is not yet, or is no longer, relevant and consequently hidden from view of the user.

    Definition Classes
    GlobalAttributes
  131. lazy val high: AttributeBuilder[Any]

    Permalink

    For use in <meter> tags.

    For use in <meter> tags.

    Definition Classes
    MiscellaneousAttributes
    See also

    https://css-tricks.com/html5-meter-element/

  132. def hr(args: VDomModifier*): VNode

    Permalink

    Represents a thematic break between paragraphs of a section or article or any longer content.

    Represents a thematic break between paragraphs of a section or article or any longer content.

    MDN

    Definition Classes
    Tags
  133. lazy val href: AttributeBuilder[String]

    Permalink

    This is the single required attribute for anchors defining a hypertext source link.

    This is the single required attribute for anchors defining a hypertext source link. It indicates the link target, either a URL or a URL fragment. A URL fragment is a name preceded by a hash mark (#), which specifies an internal target location (an ID) within the current document. URLs are not restricted to Web (HTTP)-based documents. URLs might use any protocol supported by the browser. For example, file, ftp, and mailto work in most user agents.

    MDN

    Definition Classes
    MiscellaneousAttributes
  134. lazy val httpEquiv: AttributeBuilder[String]

    Permalink

    This enumerated attribute defines the pragma that can alter servers and user-agents behavior.

    This enumerated attribute defines the pragma that can alter servers and user-agents behavior. The value of the pragma is defined using the content attribute and can be one of the following:

    content-language content-type default-style refresh set-cookie

    MDN

    Definition Classes
    MiscellaneousAttributes
  135. def i(args: VDomModifier*): VNode

    Permalink

    Italicized text.

    Italicized text.

    MDN

    Definition Classes
    Tags
  136. lazy val icon: AttributeBuilder[Any]

    Permalink

    Image URL, used to provide a picture to represent the command represented by a <menuitem>.

    Image URL, used to provide a picture to represent the command represented by a <menuitem>.

    MDN

    Definition Classes
    MiscellaneousAttributes
  137. lazy val id: AttributeBuilder[String]

    Permalink

    This attribute defines a unique identifier (ID) which must be unique in the whole document.

    This attribute defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).

    MDN

    Definition Classes
    GlobalAttributes
  138. def iframe(args: VDomModifier*): VNode

    Permalink

    Represents a nested browsing context, that is an embedded HTML document.

    Represents a nested browsing context, that is an embedded HTML document.

    MDN

    Definition Classes
    Tags
  139. def img(args: VDomModifier*): VNode

    Permalink

    Represents an image.

    Represents an image.

    MDN

    Definition Classes
    Tags
  140. def input(args: VDomModifier*): VNode

    Permalink

    A typed data field allowing the user to input data.

    A typed data field allowing the user to input data.

    MDN

    Definition Classes
    Tags
  141. lazy val inputChecked: BoolEventEmitterBuilder

    Permalink

    The input event is fired when an element gets user input.

    The input event is fired when an element gets user input.

    Definition Classes
    FormEventAttributes
  142. lazy val inputNumber: NumberEventEmitterBuilder

    Permalink

    The input event is fired when an element gets user input.

    The input event is fired when an element gets user input.

    Definition Classes
    FormEventAttributes
  143. lazy val inputString: StringEventEmitterBuilder

    Permalink

    The input event is fired when an element gets user input.

    The input event is fired when an element gets user input.

    Definition Classes
    FormEventAttributes
  144. lazy val inputType: AttributeBuilder[Any]

    Permalink

    The type of control to display.

    The type of control to display. The default type is text, if this attribute is not specified.

    Definition Classes
    InputAttributes
  145. def ins(args: VDomModifier*): VNode

    Permalink

    Defines an addition to the document.

    Defines an addition to the document.

    MDN

    Definition Classes
    Tags
  146. lazy val insert: InsertHookBuilder.type

    Permalink

    Lifecycle hook for component insertion.

    Lifecycle hook for component insertion.

    Definition Classes
    OutWatchLifeCycleAttributes
  147. lazy val integrity: AttributeBuilder[Any]

    Permalink

    Contains inline metadata, a base64-encoded cryptographic hash of a resource (file) you’re telling the browser to fetch, that a user agent can use to verify that a fetched resource has been delivered free of unexpected manipulation.

    Contains inline metadata, a base64-encoded cryptographic hash of a resource (file) you’re telling the browser to fetch, that a user agent can use to verify that a fetched resource has been delivered free of unexpected manipulation.

    Definition Classes
    MiscellaneousAttributes
    See also

    https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity MDN

  148. lazy val invalid: BoolEventEmitterBuilder

    Permalink

    This event is fired when an element becomes invalid.

    This event is fired when an element becomes invalid.

    Definition Classes
    FormEventAttributes
  149. lazy val ismap: BoolAttributeBuilder

    Permalink

    This Boolean attribute indicates that the image is part of a server-side map.

    This Boolean attribute indicates that the image is part of a server-side map. If so, the precise coordinates of a click are sent to the server.

    Note: This attribute is allowed only if the <img> element is a descendant of an <a> element with a valid href attribute.

    MDN

    Definition Classes
    MiscellaneousAttributes
  150. lazy val itemid: AttributeBuilder[Any]

    Permalink

    The itemid global attribute is the unique, global identifier of an item.

    The itemid global attribute is the unique, global identifier of an item. itemid attributes can only be specified on elements that have both itemscope and itemtype attributes. Also, the itemid can only be specified on elements with an itemscope attribute whose corresponding itemtype refers to or defines a vocabulary that supports global identifiers.

    MDN

    Definition Classes
    GlobalAttributes
  151. lazy val itemprop: AttributeBuilder[Any]

    Permalink

    The itemprop global attribute is used to add properties to an item.

    The itemprop global attribute is used to add properties to an item. Every HTML element can have an itemprop attribute specified, and an itemprop consists of a name-value pair. Each name-value pair is called a property, and a group of one or more properties forms an item. Property values are either a string or a URL and can be associated with a very wide range of elements including <audio>, <embed>, <iframe>, <img>, <link>, <object>, <source>, <track>, and <video>.

    MDN

    Definition Classes
    GlobalAttributes
  152. lazy val itemref: AttributeBuilder[Any]

    Permalink

    The global attribute itemref Properties that are not descendants of an element with the itemscope attribute can be associated with the item using an itemref.

    The global attribute itemref Properties that are not descendants of an element with the itemscope attribute can be associated with the item using an itemref. itemref provides a list of element id's (not itemids) with additional properties elsewhere in the document. The itemref attribute can only be specified on elements that have an itemscope attribute specified.

    MDN

    Definition Classes
    GlobalAttributes
  153. lazy val itemscope: AttributeBuilder[Any]

    Permalink

    The global attribute itemscope (usually) works along with itemtype to specify that the HTML contained in a block is about a particular item.

    The global attribute itemscope (usually) works along with itemtype to specify that the HTML contained in a block is about a particular item. itemscope creates the Item and defines the scope of the itemtype associated with it. itemtype is a valid URL of a vocabulary (such as schema.org) that describes the item and its properties context. In the examples below the vocabulary used is from schema.org. Every HTML element may have an itemscope attribute specified. An itemscope element that doesn't have an associated itemtype has an itemref.

    MDN

    Definition Classes
    GlobalAttributes
  154. lazy val itemtype: AttributeBuilder[Any]

    Permalink

    The global attribute itemtype specifies the URL of the vocabulary that will be used to define itemprop's (item properties) in the data structure.

    The global attribute itemtype specifies the URL of the vocabulary that will be used to define itemprop's (item properties) in the data structure. itemscope is used to set the scope of where in the data structure the vocabulary set by itemtype will be active.

    MDN

    Definition Classes
    GlobalAttributes
  155. def kbd(args: VDomModifier*): VNode

    Permalink

    Represents user input, often from a keyboard, but not necessarily.

    Represents user input, often from a keyboard, but not necessarily.

    MDN

    Definition Classes
    Tags
  156. lazy val key: KeyBuilder.type

    Permalink
    Definition Classes
    SnabbdomKeyAttributes
  157. lazy val keydown: EventEmitterBuilder[KeyboardEvent]

    Permalink

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

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

    MDN

    Definition Classes
    KeyboardEventAttributes
  158. lazy val keypress: EventEmitterBuilder[KeyboardEvent]

    Permalink

    The keypress event should be raised when the user presses a key on the keyboard.

    The keypress event should be raised when the user presses a key on the keyboard. However, not all browsers fire keypress events for certain keys.

    Webkit-based browsers (Google Chrome and Safari, for example) do not fire keypress events on the arrow keys. Firefox does not fire keypress events on modifier keys like SHIFT.

    MDN

    Definition Classes
    KeyboardEventAttributes
  159. lazy val keyup: EventEmitterBuilder[KeyboardEvent]

    Permalink

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

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

    MDN

    Definition Classes
    KeyboardEventAttributes
  160. lazy val kind: AttributeBuilder[Any]

    Permalink

    How the text track is meant to be used.

    How the text track is meant to be used. If omitted the default kind is subtitles. If the attribute is not present, it will use the subtitles. If the attribute contains an invalid value, it will use metadata. (Versions of Chrome earlier than 52 treated an invalid value as subtitles.)

    The following keywords are allowed:

    subtitles: Subtitles provide translation of content that cannot be understood by the viewer. For example dialogue or text that is not English in an English language film. Subtitles may contain additional content, usually extra background information. For example the text at the beginning of the Star Wars films, or the date, time, and location of a scene.

    captions: Closed captions provide a transcription and possibly a translation of audio. It may include important non-verbal information such as music cues or sound effects. It may indicate the cue's source (e.g. music, text, character). Suitable for users who are deaf or when the sound is muted.

    descriptions: Textual description of the video content. Suitable for users who are blind or where the video cannot be seen.

    chapters: Chapter titles are intended to be used when the user is navigating the media resource.

    metadata: Tracks used by scripts. Not visible to the user.

    Definition Classes
    MediaAttributes
  161. def label(args: VDomModifier*): VNode

    Permalink

    The caption of a single field

    The caption of a single field

    MDN

    Definition Classes
    Tags
  162. lazy val lang: AttributeBuilder[Any]

    Permalink

    This attribute participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in.

    This attribute participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in. The tag contains one single entry value in the format defines in the Tags for Identifying Languages (BCP47) IETF document. If the tag content is the empty string the language is set to unknown; if the tag content is not valid, regarding to BCP47, it is set to invalid.

    MDN

    Definition Classes
    GlobalAttributes
  163. def legend(args: VDomModifier*): VNode

    Permalink

    The caption for a fieldset.

    The caption for a fieldset.

    MDN

    Definition Classes
    Tags
  164. def li(args: VDomModifier*): VNode

    Permalink

    Defines an item of an list.

    Defines an item of an list.

    MDN

    Definition Classes
    Tags
  165. def link(args: VDomModifier*): VNode

    Permalink

    Used to link JavaScript and external CSS with the current HTML document.

    Used to link JavaScript and external CSS with the current HTML document.

    MDN

    Definition Classes
    Tags
  166. lazy val list: AttributeBuilder[Any]

    Permalink

    The list attribute refers to a <datalist> element that contains the options for an input element the presents a select list.

    The list attribute refers to a <datalist> element that contains the options for an input element the presents a select list.

    Definition Classes
    InputAttributes
  167. lazy val loadeddata: EventEmitterBuilder[Event]

    Permalink

    Script to be run when media data is loaded.

    Script to be run when media data is loaded.

    Definition Classes
    MediaEventAttributes
  168. lazy val loadedmetadata: EventEmitterBuilder[Event]

    Permalink

    Script to be run when meta data (like dimensions and duration) are loaded.

    Script to be run when meta data (like dimensions and duration) are loaded.

    Definition Classes
    MediaEventAttributes
  169. lazy val loadstart: EventEmitterBuilder[Event]

    Permalink

    Script to be run just as the file begins to load before anything is actually loaded.

    Script to be run just as the file begins to load before anything is actually loaded.

    Definition Classes
    MediaEventAttributes
  170. lazy val loop: BoolAttributeBuilder

    Permalink

    A Boolean attribute; if specified, we will, upon reaching the end of the video, automatically seek back to the start.

    A Boolean attribute; if specified, we will, upon reaching the end of the video, automatically seek back to the start.

    MDN

    Definition Classes
    MediaAttributes
  171. lazy val low: AttributeBuilder[Double]

    Permalink

    For use in <meter> tags.

    For use in <meter> tags.

    Definition Classes
    MiscellaneousAttributes
    See also

    https://css-tricks.com/html5-meter-element/

  172. def main(args: VDomModifier*): VNode

    Permalink

    Defines the main or important content in the document.

    Defines the main or important content in the document. There is only one main element in the document.

    MDN

    Definition Classes
    Tags
  173. def map(args: VDomModifier*): VNode

    Permalink

    In conjunction with area, defines an image map.

    In conjunction with area, defines an image map.

    MDN

    Definition Classes
    Tags
  174. def mark(args: VDomModifier*): VNode

    Permalink

    Represents text highlighted for reference purposes, that is for its relevance in another context.

    Represents text highlighted for reference purposes, that is for its relevance in another context.

    MDN

    Definition Classes
    Tags
  175. def math(args: VDomModifier*): VNode

    Permalink

    Defines a mathematical formula.

    Defines a mathematical formula.

    MDN

    Definition Classes
    Tags
  176. lazy val max: AttributeBuilder[Double]

    Permalink

    The max attribute specifies the maximum value for an <input> element of type number, range, date, datetime, datetime-local, month, time, or week.

    The max attribute specifies the maximum value for an <input> element of type number, range, date, datetime, datetime-local, month, time, or week.

    Definition Classes
    InputAttributes
  177. lazy val maxlength: AttributeBuilder[Int]

    Permalink

    The maximum allowed length for the input field.

    The maximum allowed length for the input field. This attribute forces the input control to accept no more than the allowed number of characters. It does not produce any feedback to the user; you must write Javascript to make that happen.

    Definition Classes
    InputAttributes
  178. lazy val media: AttributeBuilder[Any]

    Permalink

    This attribute specifies the media which the linked resource applies to.

    This attribute specifies the media which the linked resource applies to. Its value must be a media query. This attribute is mainly useful when linking to external stylesheets by allowing the user agent to pick the best adapted one for the device it runs on.

    Definition Classes
    MiscellaneousAttributes
    See also

    https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link#attr-media

  179. def menu(args: VDomModifier*): VNode

    Permalink

    Represents a group of commands that a user can perform or activate.

    Represents a group of commands that a user can perform or activate. This includes both list menus, which might appear across the top of a screen, as well as context menus, such as those that might appear underneath a button after it has been clicked.

    MDN

    Definition Classes
    Tags
  180. def menuitem(args: VDomModifier*): VNode

    Permalink

    Represents a command that a user is able to invoke through a popup menu.

    Represents a command that a user is able to invoke through a popup menu. This includes context menus, as well as menus that might be attached to a menu button.

    A command can either be defined explicitly, with a textual label and optional icon to describe its appearance, or alternatively as an indirect command whose behavior is defined by a separate element. Commands can also optionally include a checkbox or be grouped to share radio buttons. (Menu items for indirect commands gain checkboxes or radio buttons when defined against elements and .) MDN

    Definition Classes
    Tags
  181. def meta(args: VDomModifier*): VNode

    Permalink

    Defines metadata that can't be defined using another HTML element.

    Defines metadata that can't be defined using another HTML element.

    MDN

    Definition Classes
    Tags
  182. def meter(args: VDomModifier*): VNode

    Permalink

    A scalar measurement within a known range.

    A scalar measurement within a known range.

    MDN

    Definition Classes
    Tags
  183. lazy val method: AttributeBuilder[Any]

    Permalink

    The HTTP method that the browser uses to submit the form.

    The HTTP method that the browser uses to submit the form. Possible values are:

    post: Corresponds to the HTTP POST method ; form data are included in the body of the form and sent to the server.

    get: Corresponds to the HTTP GET method; form data are appended to the action attribute URI with a '?' as a separator, and the resulting URI is sent to the server. Use this method when the form has no side-effects and contains only ASCII characters.

    This value can be overridden by a formmethod attribute on a button or input element.

    MDN

    Definition Classes
    InputAttributes
  184. lazy val min: AttributeBuilder[Double]

    Permalink

    The min attribute specifies the minimum value for an <input> element of type number, range, date, datetime, datetime-local, month, time, or week.

    The min attribute specifies the minimum value for an <input> element of type number, range, date, datetime, datetime-local, month, time, or week.

    Definition Classes
    InputAttributes
  185. lazy val minlength: AttributeBuilder[Int]

    Permalink

    The minimum allowed length for the input field.

    The minimum allowed length for the input field. This attribute forces the input control to accept no less than the allowed number of characters. It does not produce any feedback to the user; you must write Javascript to make that happen.

    Definition Classes
    InputAttributes
  186. lazy val mousedown: EventEmitterBuilder[MouseEvent]

    Permalink

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

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

    MDN

    Definition Classes
    MouseEventAttributes
  187. lazy val mouseenter: EventEmitterBuilder[MouseEvent]

    Permalink

    The mouseenter event is fired when a pointing device (usually a mouse) is moved over the element that has the listener attached.

    The mouseenter event is fired when a pointing device (usually a mouse) is moved over the element that has the listener attached.

    MDN

    Definition Classes
    MouseEventAttributes
  188. lazy val mouseleave: EventEmitterBuilder[MouseEvent]

    Permalink

    The mouseleave event is fired when a pointing device (usually a mouse) is moved off the element that has the listener attached.

    The mouseleave event is fired when a pointing device (usually a mouse) is moved off the element that has the listener attached.

    MDN

    Definition Classes
    MouseEventAttributes
  189. lazy val mousemove: EventEmitterBuilder[MouseEvent]

    Permalink

    The mousemove event is raised when the user moves the mouse.

    The mousemove event is raised when the user moves the mouse.

    MDN

    Definition Classes
    MouseEventAttributes
  190. lazy val mouseout: EventEmitterBuilder[MouseEvent]

    Permalink

    The mouseout event is fired when a pointing device (usually a mouse) is moved off the element that has the listener attached or off one of its children.

    The mouseout event is fired when a pointing device (usually a mouse) is moved off the element that has the listener attached or off one of its children. Note that it is also triggered on the parent when you move onto a child element, since you move out of the visible space of the parent.

    MDN

    Definition Classes
    MouseEventAttributes
  191. lazy val mouseover: EventEmitterBuilder[MouseEvent]

    Permalink

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

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

    MDN

    Definition Classes
    MouseEventAttributes
  192. lazy val mouseup: EventEmitterBuilder[MouseEvent]

    Permalink

    The mouseup event is raised when the user releases the mouse button.

    The mouseup event is raised when the user releases the mouse button.

    MDN

    Definition Classes
    MouseEventAttributes
  193. lazy val multiple: AttributeBuilder[Any]

    Permalink

    This Boolean attribute specifies, when present/true, that the user is allowed to enter more than one value for the <input> element for types "email" or "file".

    This Boolean attribute specifies, when present/true, that the user is allowed to enter more than one value for the <input> element for types "email" or "file". It can also be provided to the <select> element to allow selecting more than one option.

    Definition Classes
    InputAttributes
  194. lazy val muted: BoolAttributeBuilder

    Permalink

    A Boolean attribute which indicates the default setting of the audio contained in the video.

    A Boolean attribute which indicates the default setting of the audio contained in the video. If set, the audio will be initially silenced. Its default value is false, meaning that the audio will be played when the video is played.

    MDN

    Definition Classes
    MediaAttributes
  195. lazy val name: AttributeBuilder[String]

    Permalink

    On form elements (input etc.): Name of the element.

    On form elements (input etc.): Name of the element. For example used by the server to identify the fields in form submits.

    On the meta tag: This attribute defines the name of a document-level metadata. This document-level metadata name is associated with a value, contained by the content attribute.

    MDN

    Definition Classes
    InputAttributes
  196. def nav(args: VDomModifier*): VNode

    Permalink

    Represents a section of a page that links to other pages or to parts within the page: a section with navigation links.

    Represents a section of a page that links to other pages or to parts within the page: a section with navigation links.

    MDN

    Definition Classes
    Tags
  197. def noscript(args: VDomModifier*): VNode

    Permalink

    Defines alternative content to display when the browser doesn't support scripting.

    Defines alternative content to display when the browser doesn't support scripting.

    MDN

    Definition Classes
    Tags
  198. lazy val novalidate: BoolAttributeBuilder

    Permalink

    This Boolean attribute indicates that the form is not to be validated when submitted.

    This Boolean attribute indicates that the form is not to be validated when submitted. If this attribute is not specified (and therefore the form is validated), this default setting can be overridden by a formnovalidate attribute on a

    Definition Classes
    InputAttributes
  199. def object(args: VDomModifier*): VNode

    Permalink

    Represents an external resource, which is treated as an image, an HTML sub-document, or an external resource to be processed by a plug-in.

    Represents an external resource, which is treated as an image, an HTML sub-document, or an external resource to be processed by a plug-in.

    MDN

    Definition Classes
    Tags
  200. lazy val offline: EventEmitterBuilder[Nothing]

    Permalink

    Firefox 3 introduces two new events: "online" and "offline".

    Firefox 3 introduces two new events: "online" and "offline". These two events are fired on the <body> of each page when the browser switches between online and offline mode. Additionally, the events bubble up from document.body, to document, ending at window. Both events are non-cancellable (you can't prevent the user from coming online, or going offline).

    MDN

    Definition Classes
    WindowEventAttrs
  201. def ol(args: VDomModifier*): VNode

    Permalink

    Defines an ordered list of items.

    Defines an ordered list of items.

    MDN

    Definition Classes
    Tags
  202. lazy val online: EventEmitterBuilder[Nothing]

    Permalink

    Firefox 3 introduces two new events: "online" and "offline".

    Firefox 3 introduces two new events: "online" and "offline". These two events are fired on the <body> of each page when the browser switches between online and offline mode. Additionally, the events bubble up from document.body, to document, ending at window. Both events are non-cancellable (you can't prevent the user from coming online, or going offline).

    MDN

    Definition Classes
    WindowEventAttrs
  203. lazy val open: BoolAttributeBuilder

    Permalink

    This Boolean attribute indicates whether the details will be shown to the user on page load.

    This Boolean attribute indicates whether the details will be shown to the user on page load. Default is false and so details will be hidden.

    MDN

    Definition Classes
    MiscellaneousAttributes
  204. def optgroup(args: VDomModifier*): VNode

    Permalink

    A set of options, logically grouped.

    A set of options, logically grouped.

    MDN

    Definition Classes
    Tags
  205. lazy val optimum: AttributeBuilder[Double]

    Permalink

    For use in <meter> tags.

    For use in <meter> tags.

    Definition Classes
    MiscellaneousAttributes
    See also

    https://css-tricks.com/html5-meter-element/

  206. def option(args: VDomModifier*): VNode

    Permalink

    An option in a select element.

    An option in a select element.

    MDN

    Definition Classes
    Tags
  207. def output(args: VDomModifier*): VNode

    Permalink

    The result of a calculation

    The result of a calculation

    MDN

    Definition Classes
    Tags
  208. def p(args: VDomModifier*): VNode

    Permalink

    Defines a portion that should be displayed as a paragraph.

    Defines a portion that should be displayed as a paragraph.

    MDN

    Definition Classes
    Tags
  209. def param(args: VDomModifier*): VNode

    Permalink

    Defines parameters for use by plug-ins invoked by object elements.

    Defines parameters for use by plug-ins invoked by object elements.

    MDN

    Definition Classes
    Tags
  210. lazy val paste: EventEmitterBuilder[ClipboardEvent]

    Permalink

    Fires when the user pastes some content in an element.

    Fires when the user pastes some content in an element.

    Definition Classes
    ClipBoardEventAttributes
  211. lazy val pattern: AttributeBuilder[Any]

    Permalink

    Specifies a regular expression to validate the input.

    Specifies a regular expression to validate the input. The pattern attribute works with the following input types: text, search, url, tel, email, and password. Use the title attribute to describe the pattern to the user.

    Definition Classes
    InputAttributes
  212. lazy val pause: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the media is paused either by the user or programmatically.

    Script to be run when the media is paused either by the user or programmatically.

    Definition Classes
    MediaEventAttributes
  213. lazy val placeholder: AttributeBuilder[String]

    Permalink

    A hint to the user of what can be entered in the control.

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

    MDN

    Definition Classes
    InputAttributes
  214. lazy val play: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the media is ready to start playing.

    Script to be run when the media is ready to start playing.

    Definition Classes
    MediaEventAttributes
  215. lazy val playing: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the media actually has started playing.

    Script to be run when the media actually has started playing.

    Definition Classes
    MediaEventAttributes
  216. lazy val pointerlockchange: EventEmitterBuilder[MouseEvent]

    Permalink

    The pointerlockchange event is fired when the pointer is locked/unlocked.

    The pointerlockchange event is fired when the pointer is locked/unlocked.

    MDN

    Definition Classes
    MouseEventAttributes
  217. lazy val pointerlockerror: EventEmitterBuilder[MouseEvent]

    Permalink

    The pointerlockerror event is fired when locking the pointer failed (for technical reasons or because the permission was denied).

    The pointerlockerror event is fired when locking the pointer failed (for technical reasons or because the permission was denied).

    MDN

    Definition Classes
    MouseEventAttributes
  218. lazy val poster: AttributeBuilder[Any]

    Permalink

    A URL indicating a poster frame to show until the user plays or seeks.

    A URL indicating a poster frame to show until the user plays or seeks. If this attribute isn't specified, nothing is displayed until the first frame is available; then the first frame is shown as the poster frame.

    MDN

    Definition Classes
    MediaAttributes
  219. def pre(args: VDomModifier*): VNode

    Permalink

    Indicates that its content is preformatted and that this format must be preserved.

    Indicates that its content is preformatted and that this format must be preserved.

    MDN

    Definition Classes
    Tags
  220. lazy val preload: AttributeBuilder[Any]

    Permalink

    This enumerated attribute is intended to provide a hint to the browser about what the author thinks will lead to the best user experience.

    This enumerated attribute is intended to provide a hint to the browser about what the author thinks will lead to the best user experience. It may have one of the following values:

    none: indicates that the video should not be preloaded.

    metadata: indicates that only video metadata (e.g. length) is fetched.

    auto: indicates that the whole video file could be downloaded, even if the user is not expected to use it.

    the empty string: synonym of the auto value.

    If not set, its default value is browser-defined (i.e. each browser may have its default value). The spec advises it to be set to metadata.

    MDN

    Definition Classes
    MediaAttributes
  221. def progress(args: VDomModifier*): VNode

    Permalink

    A progress completion bar

    A progress completion bar

    MDN

    Definition Classes
    Tags
  222. def q(args: VDomModifier*): VNode

    Permalink

    An inline quotation.

    An inline quotation.

    MDN

    Definition Classes
    Tags
  223. lazy val radiogroup: AttributeBuilder[Any]

    Permalink

    This attribute specifies the name of a group of commands to be toggled as radio buttons when selected.

    This attribute specifies the name of a group of commands to be toggled as radio buttons when selected. May only be used where the type attribute is radio.

    MDN

    Definition Classes
    MiscellaneousAttributes
  224. lazy val ratechange: EventEmitterBuilder[Event]

    Permalink

    Script to be run each time the playback rate changes (like when a user switches to a slow motion or fast forward mode).

    Script to be run each time the playback rate changes (like when a user switches to a slow motion or fast forward mode).

    Definition Classes
    MediaEventAttributes
  225. lazy val readonly: BoolAttributeBuilder

    Permalink

    This Boolean attribute indicates that the user cannot modify the value of the control.

    This Boolean attribute indicates that the user cannot modify the value of the control. This attribute is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type.

    MDN

    Definition Classes
    InputAttributes
  226. lazy val rel: AttributeBuilder[Any]

    Permalink

    This attribute names a relationship of the linked document to the current document.

    This attribute names a relationship of the linked document to the current document. The attribute must be a space-separated list of the link types values. The most common use of this attribute is to specify a link to an external style sheet: the rel attribute is set to stylesheet, and the href attribute is set to the URL of an external style sheet to format the page.

    MDN

    Definition Classes
    MiscellaneousAttributes
  227. lazy val required: BoolAttributeBuilder

    Permalink

    This attribute specifies that the user must fill in a value before submitting a form.

    This attribute specifies that the user must fill in a value before submitting a form. It cannot be used when the type attribute is hidden, image, or a button type (submit, reset, or button). The :optional and :required CSS pseudo-classes will be applied to the field as appropriate.

    MDN

    Definition Classes
    InputAttributes
  228. lazy val reset: EventEmitterBuilder[Nothing]

    Permalink

    The reset event is fired when a form is reset.

    The reset event is fired when a form is reset.

    MDN

    Definition Classes
    FormEventAttributes
  229. lazy val resize: EventEmitterBuilder[Nothing]

    Permalink

    The resize event is fired when the document view has been resized.

    The resize event is fired when the document view has been resized.

    Definition Classes
    WindowEventAttrs
  230. lazy val reversed: AttributeBuilder[Any]

    Permalink

    This Boolean attribute specifies that the items of the list are specified in reversed order.

    This Boolean attribute specifies that the items of the list are specified in reversed order.

    MDN HTML5

    Definition Classes
    MiscellaneousAttributes
  231. lazy val role: AttributeBuilder[String]

    Permalink

    The attribute describes the role(s) the current element plays in the context of the document.

    The attribute describes the role(s) the current element plays in the context of the document. This can be used, for example, by applications and assistive technologies to determine the purpose of an element. This could allow a user to make informed decisions on which actions may be taken on an element and activate the selected action in a device independent way. It could also be used as a mechanism for annotating portions of a document in a domain specific way (e.g., a legal term taxonomy). Although the role attribute may be used to add semantics to an element, authors should use elements with inherent semantics, such as p, rather than layering semantics on semantically neutral elements, such as div role="paragraph".

    See: http://www.w3.org/TR/role-attribute/#s_role_module_attributes

    Definition Classes
    MiscellaneousAttributes
  232. lazy val rows: AttributeBuilder[Double]

    Permalink

    The number of visible text lines for the control.

    The number of visible text lines for the control.

    MDN

    Definition Classes
    InputAttributes
  233. lazy val rowspan: AttributeBuilder[Any]

    Permalink

    This attribute contains a non-negative integer value that indicates for how many rows the cell extends.

    This attribute contains a non-negative integer value that indicates for how many rows the cell extends. Its default value is 1; if its value is set to 0, it extends until the end of the table section (<thead>, <tbody>, <tfoot>, even if implicitly defined, that the cell belongs to. Values higher than 65534 are clipped down to 65534.

    MDN

    Definition Classes
    TableAttributes
  234. def rp(args: VDomModifier*): VNode

    Permalink

    Represents parenthesis around a ruby annotation, used to display the annotation in an alternate way by browsers not supporting the standard display for annotations.

    Represents parenthesis around a ruby annotation, used to display the annotation in an alternate way by browsers not supporting the standard display for annotations.

    MDN

    Definition Classes
    Tags
  235. def rt(args: VDomModifier*): VNode

    Permalink

    Represents the text of a ruby annotation.

    Represents the text of a ruby annotation.

    MDN

    Definition Classes
    Tags
  236. def ruby(args: VDomModifier*): VNode

    Permalink

    Represents content to be marked with ruby annotations, short runs of text presented alongside the text.

    Represents content to be marked with ruby annotations, short runs of text presented alongside the text. This is often used in conjunction with East Asian language where the annotations act as a guide for pronunciation, like the Japanese furigana .

    MDN

    Definition Classes
    Tags
  237. def s(args: VDomModifier*): VNode

    Permalink

    Strikethrough element, used for that is no longer accurate or relevant.

    Strikethrough element, used for that is no longer accurate or relevant.

    MDN

    Definition Classes
    Tags
  238. def samp(args: VDomModifier*): VNode

    Permalink

    Represents sample output of a program or a computer.

    Represents sample output of a program or a computer.

    MDN

    Definition Classes
    Tags
  239. lazy val scope: AttributeBuilder[Any]

    Permalink

    This enumerated attribute defines the cells that the header (defined in the <th>) element relates to.

    This enumerated attribute defines the cells that the header (defined in the <th>) element relates to. It may have the following values:

    row: The header relates to all cells of the row it belongs to.

    col: The header relates to all cells of the column it belongs to.

    rowgroup: The header belongs to a rowgroup and relates to all of its cells. These cells can be placed to the right or the left of the header, depending on the value of the dir attribute in the <table> element.

    colgroup: The header belongs to a colgroup and relates to all of its cells.

    auto

    MDN

    Definition Classes
    TableAttributes
  240. lazy val scoped: AttributeBuilder[Any]

    Permalink

    For use in <style> tags.

    For use in <style> tags.

    If this attribute is present, then the style applies only to its parent element. If absent, the style applies to the whole document.

    Definition Classes
    MiscellaneousAttributes
  241. def script(args: VDomModifier*): VNode

    Permalink

    Defines either an internal script or a link to an external script.

    Defines either an internal script or a link to an external script. The script language is JavaScript.

    MDN

    Definition Classes
    Tags
  242. lazy val scroll: EventEmitterBuilder[MouseEvent]

    Permalink

    Specifies the function to be called when the window is scrolled.

    Specifies the function to be called when the window is scrolled.

    MDN

    Definition Classes
    MouseEventAttributes
  243. lazy val search: EventEmitterBuilder[Nothing]

    Permalink

    Fires when the user writes something in a search field (for <input="search">).

    Fires when the user writes something in a search field (for <input="search">).

    Definition Classes
    FormEventAttributes
  244. def section(args: VDomModifier*): VNode

    Permalink

    Represents a generic section of a document, i.e., a thematic grouping of content, typically with a heading.

    Represents a generic section of a document, i.e., a thematic grouping of content, typically with a heading.

    MDN

    Definition Classes
    Tags
  245. lazy val seeked: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the seeking attribute is set to false indicating that seeking has ended.

    Script to be run when the seeking attribute is set to false indicating that seeking has ended.

    Definition Classes
    MediaEventAttributes
  246. lazy val seeking: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the seeking attribute is set to true indicating that seeking is active.

    Script to be run when the seeking attribute is set to true indicating that seeking is active.

    Definition Classes
    MediaEventAttributes
  247. def select(args: VDomModifier*): VNode

    Permalink

    A control that allows the user to select one of a set of options.

    A control that allows the user to select one of a set of options.

    MDN

    Definition Classes
    Tags
  248. lazy val selected: BoolAttributeBuilder

    Permalink

    If present, this Boolean attribute indicates that the option is initially selected.

    If present, this Boolean attribute indicates that the option is initially selected. If the <option> element is the descendant of a <select> element whose multiple attribute is not set, only one single <option> of this <select> element may have the selected attribute.

    MDN

    Definition Classes
    InputAttributes
  249. lazy val shape: AttributeBuilder[Any]

    Permalink

    This attribute was used to define a region for hyperlinks to create an image map.

    This attribute was used to define a region for hyperlinks to create an image map. The values are circle, default, polygon, and rect. The format of the coords attribute depends on the value of shape. For circle, the value is x,y,r where x and y are the pixel coordinates for the center of the circle and r is the radius value in pixels. For rect, the coords attribute should be x,y,w,h. The x,y values define the upper-left-hand corner of the rectangle, while w and h define the width and height respectively. A value of polygon for shape requires x1,y1,x2,y2,... values for coords. Each of the x,y pairs defines a point in the polygon, with successive points being joined by straight lines and the last point joined to the first. The value default for shape requires that the entire enclosed area, typically an image, be used.

    MDN HTML4 ONLY

    Definition Classes
    MiscellaneousAttributes
  250. lazy val show: EventEmitterBuilder[Event]

    Permalink

    Fires when a <menu> element is shown as a context menu.

    Fires when a <menu> element is shown as a context menu.

    Definition Classes
    MiscellaneousEventAttributes
  251. lazy val size: AttributeBuilder[Int]

    Permalink

    The initial size of the control.

    The initial size of the control. This value is in pixels unless the value of the type attribute is text or password, in which case, it is an integer number of characters. Starting in HTML5, this attribute applies only when the type attribute is set to text, search, tel, url, email, or password; otherwise it is ignored. In addition, the size must be greater than zero. If you don't specify a size, a default value of 20 is used.

    MDN

    Definition Classes
    InputAttributes
  252. lazy val sizes: AttributeBuilder[Any]

    Permalink

    This attribute defines the sizes of the icons for visual media contained in the resource.

    This attribute defines the sizes of the icons for visual media contained in the resource. It must be present only if the rel contains the icon link types value. It may have the following values:

    any, meaning that the icon can be scaled to any size as it is in a vectorial format, like image/svg+xml.

    a white-space separated list of sizes, each in the format <width in pixels>x<height in pixels> or <width in pixels>X<height in pixels>. Each of these sizes must be contained in the resource.

    MDN

    Definition Classes
    MiscellaneousAttributes
  253. def slot(args: VDomModifier*): VNode

    Permalink

    Represents a placeholder inside a web component that you can fill with your own markup, with the effect of composing different DOM trees together.

    Represents a placeholder inside a web component that you can fill with your own markup, with the effect of composing different DOM trees together.

    MDN

    Definition Classes
    Tags
  254. def small(args: VDomModifier*): VNode

    Permalink

    Represents a side comment; text like a disclaimer or copyright, which is not essential to the comprehension of the document.

    Represents a side comment; text like a disclaimer or copyright, which is not essential to the comprehension of the document.

    MDN

    Definition Classes
    Tags
  255. def source(args: VDomModifier*): VNode

    Permalink

    Allows the authors to specify alternate media resources for media elements like video or audio

    Allows the authors to specify alternate media resources for media elements like video or audio

    MDN

    Definition Classes
    Tags
  256. def span(args: VDomModifier*): VNode

    Permalink

    Represents text with no specific meaning.

    Represents text with no specific meaning. This has to be used when no other text-semantic element conveys an adequate meaning, which, in this case, is often brought by global attributes like class, lang, or dir.

    MDN

    Definition Classes
    Tags
  257. lazy val spellcheck: AttributeBuilder[Any]

    Permalink

    This enumerated attribute defines whether the element may be checked for spelling errors.

    This enumerated attribute defines whether the element may be checked for spelling errors.

    MDN

    Definition Classes
    GlobalAttributes
  258. lazy val src: AttributeBuilder[Any]

    Permalink

    If the value of the type attribute is image, this attribute specifies a URI for the location of an image to display on the graphical submit button; otherwise it is ignored.

    If the value of the type attribute is image, this attribute specifies a URI for the location of an image to display on the graphical submit button; otherwise it is ignored.

    MDN

    Definition Classes
    MiscellaneousAttributes
  259. lazy val srcset: AttributeBuilder[Any]

    Permalink

    A list of one or more strings separated by commas indicating a set of possible image sources for the user agent to use.

    A list of one or more strings separated by commas indicating a set of possible image sources for the user agent to use. Each string is composed of:

    1. a URL to an image

    2. optionally, whitespace followed by one of:

    a width descriptor, or a positive integer directly followed by 'w'. The width descriptor is divided by the source size given in the sizes attribute to calculate the effective pixel density.

    a pixel density descriptor, which is a positive floating point number directly followed by 'x'.

    If no descriptor is specified, the source is assigned the default descriptor: 1x.

    It is incorrect to mix width descriptors and pixel density descriptors in the same srcset attribute. Duplicate descriptors (for instance, two sources in the same srcset which are both described with '2x') are invalid, too.

    The user agent selects any one of the available sources at its discretion. This provides them with significant leeway to tailor their selection based on things like user preferences or bandwidth conditions.

    MDN

    Definition Classes
    MiscellaneousAttributes
  260. lazy val stalled: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the browser is unable to fetch the media data for whatever reason.

    Script to be run when the browser is unable to fetch the media data for whatever reason.

    Definition Classes
    MediaEventAttributes
  261. lazy val start: AttributeBuilder[Int]

    Permalink

    This integer attribute specifies the start value for numbering the individual list items.

    This integer attribute specifies the start value for numbering the individual list items. Although the ordering type of list elements might be Roman numerals, such as XXXI, or letters, the value of start is always represented as a number. To start numbering elements from the letter "C", use <ol start="3">.

    Note: This attribute was deprecated in HTML4, but reintroduced in HTML5.

    MDN HTML5

    Definition Classes
    MiscellaneousAttributes
  262. lazy val step: AttributeBuilder[Double]

    Permalink

    The step attribute specifies the numeric intervals for an <input> element that should be considered legal for the input.

    The step attribute specifies the numeric intervals for an <input> element that should be considered legal for the input. For example, if step is 2 on a number typed <input> then the legal numbers could be -2, 0, 2, 4, 6 etc. The step attribute should be used in conjunction with the min and max attributes to specify the full range and interval of the legal values. The step attribute is applicable to <input> elements of the following types: number, range, date, datetime, datetime-local, month, time and week.

    Definition Classes
    InputAttributes
  263. def strong(args: VDomModifier*): VNode

    Permalink

    Represents especially important text.

    Represents especially important text.

    MDN

    Definition Classes
    Tags
  264. def style(args: VDomModifier*): VNode

    Permalink

    Used to write inline CSS.

    Used to write inline CSS.

    MDN

    Definition Classes
    Tags
  265. def sub(args: VDomModifier*): VNode

    Permalink

    Subscript tag

    Subscript tag

    MDN

    Definition Classes
    Tags
  266. lazy val submit: EventEmitterBuilder[Nothing]

    Permalink

    The submit event is raised when the user clicks a submit button in a form (<input type="submit"/>).

    The submit event is raised when the user clicks a submit button in a form (<input type="submit"/>).

    MDN

    Definition Classes
    FormEventAttributes
  267. def summary(args: VDomModifier*): VNode

    Permalink

    A summary, caption, or legend for a given details.

    A summary, caption, or legend for a given details.

    MDN

    Definition Classes
    Tags
  268. def sup(args: VDomModifier*): VNode

    Permalink

    Superscript tag.

    Superscript tag.

    MDN

    Definition Classes
    Tags
  269. lazy val suspend: EventEmitterBuilder[Event]

    Permalink

    Script to be run when fetching the media data is stopped before it is completely loaded for whatever reason.

    Script to be run when fetching the media data is stopped before it is completely loaded for whatever reason.

    Definition Classes
    MediaEventAttributes
  270. lazy val tabindex: AttributeBuilder[Int]

    Permalink

    This integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position.

    This integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position. It can takes several values:

    a negative value means that the element should be focusable, but should not be reachable via sequential keyboard navigation;

    0 means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;

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

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

    Definition Classes
    GlobalAttributes
  271. def table(args: VDomModifier*): VNode

    Permalink

    Represents data with more than one dimension.

    Represents data with more than one dimension.

    MDN

    Definition Classes
    Tags
  272. lazy val target: AttributeBuilder[Any]

    Permalink

    A name or keyword indicating where to display the response that is received after submitting the form.

    A name or keyword indicating where to display the response that is received after submitting the form. In HTML 4, this is the name of, or a keyword for, a frame. In HTML5, it is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). The following keywords have special meanings:

    _self: Load the response into the same HTML 4 frame (or HTML5 browsing context) as the current one. This value is the default if the attribute is not specified.

    _blank: Load the response into a new unnamed HTML 4 window or HTML5 browsing context.

    _parent: Load the response into the HTML 4 frameset parent of the current frame or HTML5 parent browsing context of the current one. If there is no parent, this option behaves the same way as _self.

    _top: HTML 4: Load the response into the full, original window, canceling all other frames. HTML5: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self.

    iframename: The response is displayed in a named iframe.

    Definition Classes
    InputAttributes
  273. def tbody(args: VDomModifier*): VNode

    Permalink

    The table body.

    The table body.

    MDN

    Definition Classes
    Tags
  274. def td(args: VDomModifier*): VNode

    Permalink

    A single cell in a table.

    A single cell in a table.

    MDN

    Definition Classes
    Tags
  275. def textarea(args: VDomModifier*): VNode

    Permalink

    A multiline text edit control.

    A multiline text edit control.

    MDN

    Definition Classes
    Tags
  276. def tfoot(args: VDomModifier*): VNode

    Permalink

    The table footer.

    The table footer.

    MDN

    Definition Classes
    Tags
  277. def th(args: VDomModifier*): VNode

    Permalink

    A header cell in a table.

    A header cell in a table.

    MDN

    Definition Classes
    Tags
  278. def thead(args: VDomModifier*): VNode

    Permalink

    The table headers.

    The table headers.

    MDN

    Definition Classes
    Tags
  279. def time(args: VDomModifier*): VNode

    Permalink

    Represents a date and time value; the machine-readable equivalent can be represented in the datetime attribetu

    Represents a date and time value; the machine-readable equivalent can be represented in the datetime attribetu

    MDN

    Definition Classes
    Tags
  280. lazy val timeupdate: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the playing position has changed (like when the user fast forwards to a different point in the media).

    Script to be run when the playing position has changed (like when the user fast forwards to a different point in the media).

    Definition Classes
    MediaEventAttributes
  281. def title(args: VDomModifier*): VNode

    Permalink

    Defines the title of the document, shown in a browser's title bar or on the page's tab.

    Defines the title of the document, shown in a browser's title bar or on the page's tab. It can only contain text and any contained tags are not interpreted.

    MDN

    Definition Classes
    Tags
  282. lazy val toggle: EventEmitterBuilder[Event]

    Permalink

    Fires when the user opens or closes the <details> element.

    Fires when the user opens or closes the <details> element.

    Definition Classes
    MiscellaneousEventAttributes
  283. lazy val touchcancel: EventEmitterBuilder[TouchEvent]

    Permalink

    The touchcancel event is fired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created).

    The touchcancel event is fired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created).

    MDN

    Definition Classes
    TouchEventAttributes
  284. lazy val touchend: EventEmitterBuilder[TouchEvent]

    Permalink

    The touchend event is fired when a touch point is removed from the touch surface.

    The touchend event is fired when a touch point is removed from the touch surface.

    MDN

    Definition Classes
    TouchEventAttributes
  285. lazy val touchmove: EventEmitterBuilder[TouchEvent]

    Permalink

    The touchmove event is fired when a touch point is moved along the touch surface.

    The touchmove event is fired when a touch point is moved along the touch surface.

    MDN

    Definition Classes
    TouchEventAttributes
  286. lazy val touchstart: EventEmitterBuilder[TouchEvent]

    Permalink

    The touchstart event is fired when a touch point is placed on the touch surface.

    The touchstart event is fired when a touch point is placed on the touch surface.

    MDN

    Definition Classes
    TouchEventAttributes
  287. lazy val tpe: AttributeBuilder[Any]

    Permalink

    Shorthand for the type attribute.

    Shorthand for the type attribute.

    Definition Classes
    MiscellaneousAttributes
  288. def tr(args: VDomModifier*): VNode

    Permalink

    A single row in a table.

    A single row in a table.

    MDN

    Definition Classes
    Tags
  289. def track(args: VDomModifier*): VNode

    Permalink

    Allows authors to specify timed text track for media elements like video or audio

    Allows authors to specify timed text track for media elements like video or audio

    MDN

    Definition Classes
    Tags
  290. lazy val translate: AttributeBuilder[Any]

    Permalink

    Specifies whether the content of an element should be translated or not.

    Specifies whether the content of an element should be translated or not.

    Definition Classes
    GlobalAttributes
  291. lazy val type: AttributeBuilder[Any]

    Permalink

    Defines the type of the element.

    Defines the type of the element.

    Definition Classes
    MiscellaneousAttributes
  292. def u(args: VDomModifier*): VNode

    Permalink

    Underlined text.

    Underlined text.

    MDN

    Definition Classes
    Tags
  293. def ul(args: VDomModifier*): VNode

    Permalink

    Defines an unordered list of items.

    Defines an unordered list of items.

    MDN

    Definition Classes
    Tags
  294. lazy val unselectable: AttributeBuilder[Double]

    Permalink

    IE-specific property to prevent user selection.

    IE-specific property to prevent user selection.

    Definition Classes
    MiscellaneousAttributes
  295. lazy val update: UpdateHookBuilder.type

    Permalink

    Lifecycle hook for component updates.

    Lifecycle hook for component updates.

    Definition Classes
    OutWatchLifeCycleAttributes
  296. lazy val usemap: AttributeBuilder[Any]

    Permalink

    The partial URL (starting with '#') of an image map associated with the element.

    The partial URL (starting with '#') of an image map associated with the element.

    Definition Classes
    MiscellaneousAttributes
  297. lazy val value: AttributeBuilder[Any]

    Permalink

    The initial value of the control.

    The initial value of the control. This attribute is optional except when the value of the type attribute is radio or checkbox.

    MDN

    Definition Classes
    InputAttributes
  298. def video(args: VDomModifier*): VNode

    Permalink

    Represents a video, and its associated audio files and captions, with the necessary interface to play it.

    Represents a video, and its associated audio files and captions, with the necessary interface to play it.

    MDN

    Definition Classes
    Tags
  299. lazy val volume: AttributeBuilder[Float]

    Permalink

    The playback volume, in the range 0.0 (silent) to 1.0 (loudest).

    The playback volume, in the range 0.0 (silent) to 1.0 (loudest).

    Definition Classes
    MediaAttributes
  300. lazy val volumechange: EventEmitterBuilder[Event]

    Permalink

    Script to be run each time the volume is changed which (includes setting the volume to "mute").

    Script to be run each time the volume is changed which (includes setting the volume to "mute").

    Definition Classes
    MediaEventAttributes
  301. lazy val waiting: EventEmitterBuilder[Event]

    Permalink

    Script to be run when the media has paused but is expected to resume (like when the media pauses to buffer more data).

    Script to be run when the media has paused but is expected to resume (like when the media pauses to buffer more data).

    Definition Classes
    MediaEventAttributes
  302. def wbr(args: VDomModifier*): VNode

    Permalink

    Represents a line break opportunity, that is a suggested point for wrapping text in order to improve readability of text split on several lines.

    Represents a line break opportunity, that is a suggested point for wrapping text in order to improve readability of text split on several lines.

    MDN

    Definition Classes
    Tags
  303. lazy val wheel: EventEmitterBuilder[WheelEvent]

    Permalink

    The wheel event is fired when a wheel button of a pointing device (usually a mouse) is rotated.

    The wheel event is fired when a wheel button of a pointing device (usually a mouse) is rotated. This event replaces the non-standard deprecated mousewheel event.

    MDN

    Definition Classes
    MouseEventAttributes
  304. lazy val width: AttributeBuilder[Double]

    Permalink

    For the elements listed here, this establishes the element's width:

    For the elements listed here, this establishes the element's width:

    canvas embed iframe img input object video

    Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.

    MDN

    Definition Classes
    MiscellaneousAttributes
  305. lazy val wrap: AttributeBuilder[Any]

    Permalink

    Indicates how the control wraps text.

    Indicates how the control wraps text. Possible values are: hard: The browser automatically inserts line breaks (CR+LF) so that each line has no more than the width of the control; the cols attribute must be specified.

    soft: The browser ensures that all line breaks in the value consist of a CR+LF pair, but does not insert any additional line breaks.

    off: Like soft but changes appearance to white-space: pre so line segments exceeding cols are not wrapped and area becomes horizontally scrollable.

    If this attribute is not specified, soft is its default value.

    MDN

    Definition Classes
    InputAttributes
  306. lazy val xmlns: AttributeBuilder[Any]

    Permalink

    The XML namespace.

    The XML namespace.

    Definition Classes
    MiscellaneousAttributes

Deprecated Value Members

  1. lazy val challenge: AttributeBuilder[Any]

    Permalink
    Definition Classes
    MiscellaneousAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) The HTML keygen element, that this attribute belongs to has been deprecated in the HTML spec

  2. lazy val contentEditable: BoolAttributeBuilder

    Permalink
    Definition Classes
    GlobalAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'contenteditable' instead

  3. lazy val contextMenu: EventEmitterBuilder[MouseEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'contextmenu' instead

  4. lazy val dragEnd: EventEmitterBuilder[DragEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'dragend' instead

  5. lazy val dragEnter: EventEmitterBuilder[DragEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'dragenter' instead

  6. lazy val dragLeave: EventEmitterBuilder[DragEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'dragleave' instead

  7. lazy val dragOver: EventEmitterBuilder[DragEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'dragover' instead

  8. lazy val dragStart: EventEmitterBuilder[DragEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'dragstart' instead

  9. lazy val inputBool: BoolEventEmitterBuilder

    Permalink
    Definition Classes
    FormEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.8.0) Deprecated, use 'inputChecked' instead

  10. lazy val isMap: BoolAttributeBuilder

    Permalink
    Definition Classes
    MiscellaneousAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'ismap' instead

  11. lazy val itemId: AttributeBuilder[Any]

    Permalink
    Definition Classes
    GlobalAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'itemid' instead

  12. lazy val itemProp: AttributeBuilder[Any]

    Permalink
    Definition Classes
    GlobalAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'itemprop' instead

  13. lazy val keyType: AttributeBuilder[Any]

    Permalink
    Definition Classes
    MiscellaneousAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) The HTML keygen element, that this attribute belongs to has been deprecated in the HTML spec

  14. def keygen(args: VDomModifier*): VNode

    Permalink

    A key-pair generator control.

    A key-pair generator control.

    MDN

    Definition Classes
    Tags
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0)

  15. lazy val maxLength: AttributeBuilder[Int]

    Permalink
    Definition Classes
    InputAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'maxlength' instead

  16. lazy val minLength: AttributeBuilder[Int]

    Permalink
    Definition Classes
    InputAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'minlength' instead

  17. lazy val pointerLockChange: EventEmitterBuilder[MouseEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'pointerlockchange' instead

  18. lazy val pointerLockError: EventEmitterBuilder[MouseEvent]

    Permalink
    Definition Classes
    MouseEventAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'pointerlockerror' instead

  19. lazy val spellCheck: AttributeBuilder[Any]

    Permalink
    Definition Classes
    GlobalAttributes
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Deprecated, use 'spellcheck' instead

Inherited from Handlers

Inherited from Tags

Inherited from Attributes

Inherited from WindowEventAttrs

Inherited from TouchEventAttributes

Inherited from TableAttributes

Inherited from SnabbdomKeyAttributes

Inherited from OutWatchChildAttributes

Inherited from MouseEventAttributes

Inherited from MiscellaneousAttributes

Inherited from MediaEventAttributes

Inherited from MediaAttributes

Inherited from SharedEventAttributes

Inherited from KeyboardEventAttributes

Inherited from InputAttributes

Inherited from GlobalAttributes

Inherited from FormEventAttributes

Inherited from ClipBoardEventAttributes

Inherited from AnyRef

Inherited from Any

Ungrouped