io

calico.html.io$
object io extends Html[IO]

Attributes

Source
Html.scala
Graph
Supertypes
class Html[IO]
class Object
trait Matchable
class Any
Self type
io.type

Members list

Value members

Inherited methods

def aria: Aria[F]

Attributes

Inherited from:
Html
Source
Html.scala
protected def boolAsOnOffHtmlAttr(name: String): HtmlAttr[F, Boolean]

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
protected def boolAsTrueFalseHtmlAttr(name: String): HtmlAttr[F, Boolean]

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
protected def boolProp(name: String): Prop[F, Boolean, Boolean]

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
def children[K](f: K => Resource[IO, Node[IO]]): KeyedChildren[F, K]

Attributes

Inherited from:
Html
Source
Html.scala
def children: Children[F]

Attributes

Inherited from:
Html
Source
Html.scala
def cls: ClassProp[F]

Attributes

Inherited from:
Html
Source
Html.scala
def dataAttr(suffix: String): HtmlAttr[F, String]

Attributes

Inherited from:
Html
Source
Html.scala
protected def doubleProp(name: String): Prop[F, Double, Double]

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
protected def intHtmlAttr(name: String): HtmlAttr[F, Int]

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
protected def intProp(name: String): Prop[F, Int, Int]

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
def rel: HtmlAttr[F, List[String]]

Attributes

Inherited from:
Html
Source
Html.scala
def role: HtmlAttr[F, List[String]]

Attributes

Inherited from:
Html
Source
Html.scala
protected def stringHtmlAttr(name: String): HtmlAttr[F, String]

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
protected def stringProp(name: String): Prop[F, String, String]

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
def styleAttr: HtmlAttr[F, String]

Attributes

Inherited from:
Html
Source
Html.scala

Inherited fields

lazy val `type`: HtmlAttr[IO, String]

This attribute is used to define the type of the content linked to. The value of the attribute should be a MIME type such as text/html, text/css, and so on. The common use of this attribute is to define the type of style sheet linked and the most common current value is text/css, which indicates a Cascading Style Sheet format. You can use tpe as an alias for this attribute so you don't have to backtick-escape this attribute.

This attribute is used to define the type of the content linked to. The value of the attribute should be a MIME type such as text/html, text/css, and so on. The common use of this attribute is to define the type of style sheet linked and the most common current value is text/css, which indicates a Cascading Style Sheet format. You can use tpe as an alias for this attribute so you don't have to backtick-escape this attribute.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala

Represents a hyperlink, linking to another resource.

Represents a hyperlink, linking to another resource.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val abbr: HtmlTag[IO, HtmlElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val accept: Prop[IO, String, String]

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val accessKey: Prop[IO, String, String]

Specifies a shortcut key to activate/focus an element

Specifies a shortcut key to activate/focus an element

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val action: Prop[IO, String, String]

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.

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.

Only applies to FormTags.form

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

Defines a section containing contact information.

Defines a section containing contact information.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val alt: Prop[IO, String, String]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

In conjunction with map, defines an image map

In conjunction with map, defines an image map

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Represents a sound or an audio stream.

Represents a sound or an audio stream.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val autoCapitalize: Prop[IO, String, String]

This is a nonstandard attribute used by Chrome and iOS Safari Mobile, which controls whether and how the text value should be automatically capitalized as it is entered/edited by the user.

This is a nonstandard attribute used by Chrome and iOS Safari Mobile, which controls whether and how the text value should be automatically capitalized as it is entered/edited by the user.

Possible values: "none" | "sentences" | "words" | "characters"

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val autoComplete: Prop[IO, String, String]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val autoFocus: Prop[IO, Boolean, Boolean]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val b: HtmlTag[IO, HtmlElement[IO]]

Bold text.

Bold text.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Defines the base URL for relative URLs in the page.

Defines the base URL for relative URLs in the page.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val bdi: HtmlTag[IO, HtmlElement[IO]]

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.

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val bdo: HtmlTag[IO, HtmlElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Represents a content that is quoted from another source.

Represents a content that is quoted from another source.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val br: HtmlTag[IO, HtmlBrElement[IO]]

Represents a line break.

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val charset: HtmlAttr[IO, String]

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

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

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val checked: Prop[IO, Boolean, Boolean]

When the value of the type attribute is "radio" or "checkbox", this property determines whether it is checked or not. This is different from checked attribute, which contains the initial checked status of the element. More info: https://stackoverflow.com/a/6004028/2601788 (checked behaves similar to value)

When the value of the type attribute is "radio" or "checkbox", this property determines whether it is checked or not. This is different from checked attribute, which contains the initial checked status of the element. More info: https://stackoverflow.com/a/6004028/2601788 (checked behaves similar to value)

See also: defaultChecked prop / attribute

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
lazy val cite: HtmlTag[IO, HtmlElement[IO]]

Represents the title of a work being cited.

Represents the title of a work being cited.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val code: HtmlTag[IO, HtmlElement[IO]]

Represents computer code.

Represents computer code.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val colSpan: Prop[IO, Int, Int]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val cols: Prop[IO, Int, Int]

The visible width of text input or <textArea>, 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).

The visible width of text input or <textArea>, 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).

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

A command that the user can invoke.

A command that the user can invoke.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val contentAttr: Prop[IO, String, String]

This attribute gives the value associated with the name or httpEquiv attribute, of a <meta> element, depending on which of those attributes is defined on that element.

This attribute gives the value associated with the name or httpEquiv attribute, of a <meta> element, depending on which of those attributes is defined on that element.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val contentEditable: HtmlAttr[IO, Boolean]

Indicates whether the element should be editable by the user. If so, the browser modifies its widget to allow editing.

Indicates whether the element should be editable by the user. If so, the browser modifies its widget to allow editing.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val contextMenuId: HtmlAttr[IO, String]

Specifies a context menu for an element by its element id. The context menu appears when a user right-clicks on the element

Specifies a context menu for an element by its element id. The context menu appears when a user right-clicks on the element

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala

A set of predefined options for other controls.

A set of predefined options for other controls.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Associates to its content a machine-readable equivalent.

Associates to its content a machine-readable equivalent.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val dd: HtmlTag[IO, HtmlElement[IO]]

Represents the definition of the terms immediately listed before it.

Represents the definition of the terms immediately listed before it.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val defaultChecked: Prop[IO, Boolean, Boolean]

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.

See Props.checked

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val defaultSelected: Prop[IO, Boolean, Boolean]

Indicates whether this <option> is initially selected in an option list of a <select> element.

Indicates whether this <option> is initially selected in an option list of a <select> element.

See Props.selected

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val defaultValue: Prop[IO, String, String]

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

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

See also Props.value

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val del: HtmlTag[IO, HtmlModElement[IO]]

Defines a remolazy val from the document.

Defines a remolazy val from the document.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val dfn: HtmlTag[IO, HtmlElement[IO]]

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.

Dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.

Note: The tabindex attribute must not be used on the <dialog> element

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val dir: Prop[IO, String, String]

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

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)

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val disabled: Prop[IO, Boolean, Boolean]

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val div: HtmlTag[IO, HtmlDivElement[IO]]

Represents a generic container with no special meaning.

Represents a generic container with no special meaning.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val download: Prop[IO, String, String]

Prompts the user to save the linked URL instead of navigating to it. Can be used with or without a value:

Prompts the user to save the linked URL instead of navigating to it. Can be used with or without a value:

  • Without a value, the browser will suggest a filename/extension, generated from various sources:
  • The Content-Disposition HTTP header
  • The final segment in the URL path
  • The media type (from the Content-Type header, the start of a data: URL, or Blob.type for a blob: URL)
  • Defining a value suggests it as the filename. / and \ characters are converted to underscores (_). Filesystems may forbid other characters in filenames, so browsers will adjust the suggested name if necessary.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val draggable: Prop[IO, Boolean, Boolean]

Specifies whether an element is draggable or not

Specifies whether an element is draggable or not

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val dropZone: HtmlAttr[IO, String]

Specifies whether the dragged data is copied, moved, or linked, when dropped Acceptable values: copy | move | link

Specifies whether the dragged data is copied, moved, or linked, when dropped Acceptable values: copy | move | link

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val dt: HtmlTag[IO, HtmlElement[IO]]

Represents a term defined by the next dd

Represents a term defined by the next dd

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val em: HtmlTag[IO, HtmlElement[IO]]

Represents emphasized text.

Represents emphasized text.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val encType: Prop[IO, String, String]

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").

Only applies to FormTags.form

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

Represents the legend of a figure.

Represents the legend of a figure.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val figure: HtmlTag[IO, HtmlElement[IO]]

Represents a figure illustrated as part of the document.

Represents a figure illustrated as part of the document.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val forId: Prop[IO, String, String]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val formAction: HtmlAttr[IO, String]

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.

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.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val formEncType: Prop[IO, String, String]

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"

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"

Enumerated: "multipart/form-data" | "text/plain" | "application/x-www-form-urlencoded" (default)

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val formId: HtmlAttr[IO, String]

The form attribute specifies an ID of the form an <input> element belongs to.

The form attribute specifies an ID of the form an <input> element belongs to.

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val formMethod: Prop[IO, String, String]

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

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

Enumerated: "post" | "get"

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val formNoValidate: Prop[IO, Boolean, Boolean]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val formTarget: Prop[IO, String, String]

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"

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"

Enumerated: "_blank" | "_parent" | "_top" | "_self" (default)

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

fired when an element receives pointer capture.

fired when an element receives pointer capture.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Heading level 1

Heading level 2

Heading level 3

Heading level 4

Heading level 5

Heading level 6

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val heightAttr: HtmlAttr[IO, Int]

The height attribute specifies the pixel height of the following elements: <canvas>, <embed>, <iframe>, <img>, <input type="image">, <object>, <video>

The height attribute specifies the pixel height of the following elements: <canvas>, <embed>, <iframe>, <img>, <input type="image">, <object>, <video>

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val hidden: Prop[IO, Boolean, Boolean]

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val high: Prop[IO, Double, Double]

For use in <meter> tags.

For use in <meter> tags.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val hr: HtmlTag[IO, HtmlHrElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val href: HtmlAttr[IO, String]

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.

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.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala

Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val httpEquiv: Prop[IO, String, String]

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:

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val i: HtmlTag[IO, HtmlElement[IO]]

Italicized text.

Italicized text.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val idAttr: Prop[IO, String, String]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Represents an image.

lazy val indeterminate: Prop[IO, Boolean, Boolean]

In addition to the checked and unchecked states, there is a third state a checkbox can be in: indeterminate. This is a state in which it's impossible to say whether the item is toggled on or off.

In addition to the checked and unchecked states, there is a third state a checkbox can be in: indeterminate. This is a state in which it's impossible to say whether the item is toggled on or off.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

A typed data field allowing the user to input data.

A typed data field allowing the user to input data.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val inputMode: Prop[IO, String, String]

The inputmode attribute hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.

The inputmode attribute hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.

Acceptable values: none | text (default value) | decimal | numeric | tel | search | email | url

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val ins: HtmlTag[IO, HtmlModElement[IO]]

Defines an addition to the document.

Defines an addition to the document.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val kbd: HtmlTag[IO, HtmlElement[IO]]

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

A key-pair generator control.

A key-pair generator control.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

The caption of a single field

The caption of a single field

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val labelAttr: Prop[IO, String, String]

For optgroup elements, specifies the name of the group of options, which the browser can use when labeling the options in the user interface.

For optgroup elements, specifies the name of the group of options, which the browser can use when labeling the options in the user interface.

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
lazy val lang: Prop[IO, String, String]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

The caption for a fieldset.

lazy val li: HtmlTag[IO, HtmlLiElement[IO]]

Defines an item of an list.

Defines an item of an list.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val listId: HtmlAttr[IO, String]

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

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

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val loadingAttr: Prop[IO, String, String]

Indicates how the browser should load the image:

Indicates how the browser should load the image:

"eager": Loads the image immediately, regardless of whether or not the image is currently within the visible viewport (this is the default value).

"lazy": Defers loading the image until it reaches a calculated distance from the viewport, as defined by the browser. The intent is to avoid the network and storage bandwidth needed to handle the image until it's reasonably certain that it will be needed. This generally improves the performance of the content in most typical use cases.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

Fired after pointer capture is released for a pointer.

Fired after pointer capture is released for a pointer.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val low: Prop[IO, Double, Double]

For use in <meter> tags.

For use in <meter> tags.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

In conjunction with area, defines an image map.

In conjunction with area, defines an image map.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val mark: HtmlTag[IO, HtmlElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Defines a mathematical formula.

Defines a mathematical formula.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val maxAttr: HtmlAttr[IO, String]

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.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val maxLength: Prop[IO, Int, Int]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val media: Prop[IO, String, String]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

A scalar measurement within a known range.

A scalar measurement within a known range.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val method: Prop[IO, String, String]

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

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val minAttr: HtmlAttr[IO, String]

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.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val minLength: Prop[IO, Int, Int]

If the type of the input element is text, email, search, password, tel, or url, this attribute specifies the minimum number of characters (in Unicode code points) that the user can enter. For other control types, it is ignored.

If the type of the input element is text, email, search, password, tel, or url, this attribute specifies the minimum number of characters (in Unicode code points) that the user can enter. For other control types, it is ignored.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val multiple: Prop[IO, Boolean, Boolean]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val nameAttr: Prop[IO, String, String]

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

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val noValidate: Prop[IO, Boolean, Boolean]

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 <button> or <input> element belonging to the form.

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 <button> or <input> element belonging to the form.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Defines an ordered list of items.

Defines an ordered list of items.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val onAbort: EventProp[IO, Event[IO]]

Script to be run on abort

Script to be run on abort

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run after the document is printed

Script to be run after the document is printed

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

The animationend event is event fires when a CSS animation reaches the end of its active period.

The animationend event is event fires when a CSS animation reaches the end of its active period.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The animationiteration event is sent when a CSS animation reaches the end of an iteration. An iteration ends when a single pass through the sequence of animation instructions is completed by executing the last animation step.

The animationiteration event is sent when a CSS animation reaches the end of an iteration. An iteration ends when a single pass through the sequence of animation instructions is completed by executing the last animation step.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The animationstart event is sent when a CSS Animation starts to play.

The animationstart event is sent when a CSS Animation starts to play.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The DOM beforeinput event fires when the value of an <input>, or <textarea> element is about to be modified. The event also applies to elements with contenteditable enabled, and to any element when designMode is turned on.

The DOM beforeinput event fires when the value of an <input>, or <textarea> element is about to be modified. The event also applies to elements with contenteditable enabled, and to any element when designMode is turned on.

Attributes

See also
Note

IE does not support this event.

Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run before the document is printed

Script to be run before the document is printed

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

Script to be run when the document is about to be unloaded

Script to be run when the document is about to be unloaded

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

The blur event is raised when an element loses focus.

The blur event is raised when an element loses focus.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onCanPlay: EventProp[IO, Event[IO]]

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)

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onChange: EventProp[IO, Event[IO]]

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.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run when a context menu is triggered

Script to be run when a context menu is triggered

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Fires when the user copies the content of an element

Fires when the user copies the content of an element

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Fires when the user cuts the content of an element

Fires when the user cuts the content of an element

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The DOMContentLoaded event is fired when the initial HTML document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading. A very different event load should be used only to detect a fully-loaded page.

The DOMContentLoaded event is fired when the initial HTML document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading. A very different event load should be used only to detect a fully-loaded page.

It is an incredibly common mistake to use load where DOMContentLoaded would be much more appropriate, so be cautious.

Attributes

See also
Inherited from:
DocumentEventProps (hidden)
Source
DocumentEventProps.scala
lazy val onDrag: EventProp[IO, DragEvent[IO]]

Script to be run when an element is dragged

Script to be run when an element is dragged

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run at the end of a drag operation

Script to be run at the end of a drag operation

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run at the start of a drag operation

Script to be run at the start of a drag operation

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onDrop: EventProp[IO, DragEvent[IO]]

Script to be run when dragged element is being dropped

Script to be run when dragged element is being dropped

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run when the length of the media changes

Script to be run when the length of the media changes

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onEmptied: EventProp[IO, Event[IO]]

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)

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onEnded: EventProp[IO, Event[IO]]

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")

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The fullscreenchange event is fired immediately after the browser switches into or out of full-screen mode.

The fullscreenchange event is fired immediately after the browser switches into or out of full-screen mode.

Attributes

See also
Inherited from:
DocumentEventProps (hidden)
Source
DocumentEventProps.scala

The fullscreenerror event is fired when the browser cannot switch to full-screen mode.

The fullscreenerror event is fired when the browser cannot switch to full-screen mode.

Attributes

See also
Inherited from:
DocumentEventProps (hidden)
Source
DocumentEventProps.scala

Script to be run when there has been changes to the anchor part of the a URL

Script to be run when there has been changes to the anchor part of the a URL

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala
lazy val onInput: EventProp[IO, Event[IO]]

The input event is fired for input, select, textarea, and contentEditable elements when it gets user input.

The input event is fired for input, select, textarea, and contentEditable elements when it gets user input.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onInvalid: EventProp[IO, Event[IO]]

Script to be run when an element is invalid

Script to be run when an element is invalid

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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.

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.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onLoad: EventProp[IO, UIEvent[IO]]

The onload property of the GlobalEventHandlers mixin is an event handler for the load event of a Window, XMLHttpRequest, <img> element, etc., which fires when the resource has loaded.

The onload property of the GlobalEventHandlers mixin is an event handler for the load event of a Window, XMLHttpRequest, <img> element, etc., which fires when the resource has loaded.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run when media data is loaded

Script to be run when media data is loaded

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run when an object receives a message

Script to be run when an object receives a message

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

Script to be run when an object receives a message that cannot be deserialized and therefore raises an error

Script to be run when an object receives a message that cannot be deserialized and therefore raises an error

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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.

Similar to mouseover, it differs in that it doesn't bubble and that it isn't sent when the pointer is moved from one of its descendants' physical space to its own physical space.

With deep hierarchies, the amount of mouseenter events sent can be quite huge and cause significant performance problems. In such cases, it is better to listen for mouseover events.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The mouseleave event is fired when the pointer of a pointing device (usually a mouse) is moved out of an element.

The mouseleave event is fired when the pointer of a pointing device (usually a mouse) is moved out of an element.

mouseleave and mouseout are similar but differ in that mouseleave does not bubble and mouseout does.

This means that mouseleave is fired when the pointer has exited the element and all of its descendants, whereas mouseout is fired when the pointer leaves the element or leaves one of the element's descendants (even if the pointer is still within the element).

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The mouseout event is raised when the mouse leaves an element (e.g, when the mouse moves off of an image in the web page, the mouseout event is raised for that image element).

The mouseout event is raised when the mouse leaves an element (e.g, when the mouse moves off of an image in the web page, the mouseout event is raised for that image element).

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onOffline: EventProp[IO, Event[IO]]

Script to be run when the browser starts to work offline

Script to be run when the browser starts to work offline

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala
lazy val onOnline: EventProp[IO, Event[IO]]

Script to be run when the browser starts to work online

Script to be run when the browser starts to work online

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

Script to be run when a user navigates away from a page

Script to be run when a user navigates away from a page

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

Script to be run when a user navigates to a page

Script to be run when a user navigates to a page

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

Fires when the user pastes some content in an element

Fires when the user pastes some content in an element

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onPause: EventProp[IO, Event[IO]]

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onPlay: EventProp[IO, Event[IO]]

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onPlaying: EventProp[IO, Event[IO]]

Script to be run when the media actually has started playing

Script to be run when the media actually has started playing

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

a browser fires this event if it concludes the pointer will no longer be able to generate events (for example the related device is deactived).

a browser fires this event if it concludes the pointer will no longer be able to generate events (for example the related device is deactived).

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired when a pointer becomes active.

fired when a pointer becomes active.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired when a pointing device is moved into the hit test boundaries of an element or one of its descendants, including as a result of a pointerdown event from a device that does not support hover (see pointerdown).

fired when a pointing device is moved into the hit test boundaries of an element or one of its descendants, including as a result of a pointerdown event from a device that does not support hover (see pointerdown).

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired when a pointing device is moved out of the hit test boundaries of an element. For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.

fired when a pointing device is moved out of the hit test boundaries of an element. For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired when a pointer changes coordinates.

fired when a pointer changes coordinates.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired for several reasons including: pointing device is moved out of the hit test boundaries of an element; firing the pointerup event for a device that does not support hover (see pointerup); after firing the pointercancel event (see pointercancel); when a pen stylus leaves the hover range detectable by the digitizer.

fired for several reasons including: pointing device is moved out of the hit test boundaries of an element; firing the pointerup event for a device that does not support hover (see pointerup); after firing the pointercancel event (see pointercancel); when a pen stylus leaves the hover range detectable by the digitizer.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired when a pointing device is moved into an element's hit test boundaries.

fired when a pointing device is moved into an element's hit test boundaries.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

fired when a pointer is no longer active.

fired when a pointer is no longer active.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run when the window's history changes

Script to be run when the window's history changes

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala
lazy val onProgress: EventProp[IO, Event[IO]]

Script to be run when the browser is in the process of getting the media data

Script to be run when the browser is in the process of getting the media data

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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)

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onReset: EventProp[IO, Event[IO]]

The reset event is fired when a form is reset.

The reset event is fired when a form is reset.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onResize: EventProp[IO, UIEvent[IO]]

The GlobalEventHandlers.onresize property contains an EventHandler triggered when a resize event is received.

The GlobalEventHandlers.onresize property contains an EventHandler triggered when a resize event is received.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onScroll: EventProp[IO, UIEvent[IO]]

An event handler for scroll events on element.

An event handler for scroll events on element.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onSearch: EventProp[IO, Event[IO]]

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">)

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onSeeked: EventProp[IO, Event[IO]]

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onSeeking: EventProp[IO, Event[IO]]

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onSelect: EventProp[IO, Event[IO]]

The select event only fires when text inside a text input or textarea is selected. The event is fired after the text has been selected.

The select event only fires when text inside a text input or textarea is selected. The event is fired after the text has been selected.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onShow: EventProp[IO, Event[IO]]

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onStalled: EventProp[IO, Event[IO]]

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Script to be run when a Web Storage area is updated

Script to be run when a Web Storage area is updated

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala
lazy val onSubmit: EventProp[IO, Event[IO]]

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onSuspend: EventProp[IO, Event[IO]]

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

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)

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onToggle: EventProp[IO, Event[IO]]

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

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

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

The transitionend event is sent to when a CSS transition completes.

The transitionend event is sent to when a CSS transition completes.

Note: If the transition is removed from its target node before the transition completes execution, the transitionend event won't be generated. One way this can happen is by changing the value of the transition-property attribute which applies to the target. Another is if the display attribute is set to none.

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onUnload: EventProp[IO, UIEvent[IO]]

Fires once a page has unloaded (or the browser window has been closed)

Fires once a page has unloaded (or the browser window has been closed)

Attributes

See also
Inherited from:
WindowEventProps (hidden)
Source
WindowEventProps.scala

The visibilitychange event is fired when the content of a tab has become visible or has been hidden.

The visibilitychange event is fired when the content of a tab has become visible or has been hidden.

Attributes

See also
Inherited from:
DocumentEventProps (hidden)
Source
DocumentEventProps.scala

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")

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala
lazy val onWaiting: EventProp[IO, Event[IO]]

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)

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

Fires when the mouse wheel rolls up or down over an element

Fires when the mouse wheel rolls up or down over an element

Attributes

See also
Inherited from:
GlobalEventProps (hidden)
Source
GlobalEventProps.scala

A set of options, logically grouped.

A set of options, logically grouped.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val optimum: Prop[IO, Double, Double]

For use in <meter> tags.

For use in <meter> tags.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

An option in a select element.

An option in a select element.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

The result of a calculation

The result of a calculation

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Defines a portion that should be displayed as a paragraph.

Defines a portion that should be displayed as a paragraph.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val pattern: Prop[IO, String, String]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val placeholder: Prop[IO, String, String]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val pre: HtmlTag[IO, HtmlPreElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

A progress completion bar

lazy val q: HtmlTag[IO, HtmlQuoteElement[IO]]

An inline quotation.

lazy val readOnly: Prop[IO, Boolean, Boolean]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val required: Prop[IO, Boolean, Boolean]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val rowSpan: Prop[IO, Int, Int]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val rows: Prop[IO, Int, Int]

The number of visible text lines for a text control.

The number of visible text lines for a text control.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val rp: HtmlTag[IO, HtmlElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val rt: HtmlTag[IO, HtmlElement[IO]]

Represents the text of a ruby annotation.

Represents the text of a ruby annotation.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val ruby: HtmlTag[IO, HtmlElement[IO]]

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 .

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 .

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val s: HtmlTag[IO, HtmlElement[IO]]

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val samp: HtmlTag[IO, HtmlElement[IO]]

Represents the output of a program or a computer.

Represents the output of a program or a computer.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val scoped: Prop[IO, Boolean, Boolean]

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val selected: Prop[IO, Boolean, Boolean]

Indicates whether an <option> element is currently selected. This is different from selected attribute, which contains the initial selected status of the element. More info: https://stackoverflow.com/a/6004028/2601788 (selected behaves similar to value)

Indicates whether an <option> element is currently selected. This is different from selected attribute, which contains the initial selected status of the element. More info: https://stackoverflow.com/a/6004028/2601788 (selected behaves similar to value)

See also: defaultSelected prop / attribute

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
lazy val size: Prop[IO, Int, Int]

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.

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val slot: Prop[IO, String, String]

The slot global attribute assigns a slot in a shadow DOM shadow tree to an element.

The slot global attribute assigns a slot in a shadow DOM shadow tree to an element.

MDN – https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/slot

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val small: HtmlTag[IO, HtmlElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val spellCheck: Prop[IO, Boolean, Boolean]

Defines whether the element may be checked for spelling errors.

Defines whether the element may be checked for spelling errors.

MDN – https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val src: HtmlAttr[IO, String]

Specifies the URL of an image for <img> tag, for type="image" input buttons, or the URL of some other network resources like <iframe>.

Specifies the URL of an image for <img> tag, for type="image" input buttons, or the URL of some other network resources like <iframe>.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val stepAttr: HtmlAttr[IO, String]

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.

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.

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val strong: HtmlTag[IO, HtmlElement[IO]]

Represents especially important text.

Represents especially important text.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Used to write inline CSS.

lazy val sub: HtmlTag[IO, HtmlElement[IO]]

Subscript tag

Subscript tag

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val sup: HtmlTag[IO, HtmlElement[IO]]

Superscript tag.

Superscript tag.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val tabIndex: Prop[IO, Int, Int]

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:

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

Represents data with more than one dimension.

Represents data with more than one dimension.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val target: Prop[IO, String, String]

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:

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.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

A single cell in a table.

A multiline text edit control.

A header cell in a table.

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

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val title: Prop[IO, String, String]

This attribute contains a text representing advisory information related to the element it belongs too. Such information can typically, but not necessarily, be presented to the user as a tooltip.

This attribute contains a text representing advisory information related to the element it belongs too. Such information can typically, but not necessarily, be presented to the user as a tooltip.

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala

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.

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val tpe: HtmlAttr[IO, String]

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala

A single row in a table.

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

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val translate: Prop[IO, Boolean, Boolean]

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

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

Attributes

See also
Inherited from:
Props (hidden)
Source
Props.scala
lazy val typ: HtmlAttr[IO, String]

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val u: HtmlTag[IO, HtmlElement[IO]]

Underlined text.

Underlined text.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

Defines an unordered list of items.

Defines an unordered list of items.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val unselectable: HtmlAttr[IO, Boolean]

IE-specific property to prevent user selection

IE-specific property to prevent user selection

Attributes

Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val value: Prop[IO, String, String]

Current value of the element. This is different from value attribute, which contains the initial value of the element. More info: https://stackoverflow.com/a/6004028/2601788

Current value of the element. This is different from value attribute, which contains the initial value of the element. More info: https://stackoverflow.com/a/6004028/2601788

See also: defaultValue prop / attribute

Attributes

Inherited from:
Props (hidden)
Source
Props.scala
lazy val varTag: HtmlTag[IO, HtmlElement[IO]]

Represents a variable.

Represents a variable.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val wbr: HtmlTag[IO, HtmlElement[IO]]

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.

Attributes

See also
Inherited from:
HtmlTags (hidden)
Source
HtmlTags.scala
lazy val widthAttr: HtmlAttr[IO, Int]

The width attribute specifies the pixel width of the following elements: <canvas>, <embed>, <iframe>, <img>, <input type="image">, <object>, <video>

The width attribute specifies the pixel width of the following elements: <canvas>, <embed>, <iframe>, <img>, <input type="image">, <object>, <video>

Attributes

See also
Inherited from:
HtmlAttrs (hidden)
Source
HtmlAttrs.scala
lazy val xmlns: Prop[IO, String, String]

Specifies XML namespace for the document

Specifies XML namespace for the document

Attributes

Inherited from:
Props (hidden)
Source
Props.scala

Givens

Inherited givens

Attributes

Inherited from:
ClassPropModifiers (hidden)
Source
Prop.scala
inline given forConstantHtmlAttr[E <: Element[IO], V]: Modifier[F, E, ConstantModifier[V]]

Attributes

Inherited from:
HtmlAttrModifiers (hidden)
Source
HtmlAttr.scala
inline given forConstantProp[N, V, J]: Modifier[F, N, ConstantModifier[V, J]]

Attributes

Inherited from:
PropModifiers (hidden)
Source
Prop.scala

Attributes

Inherited from:
ChildrenModifiers (hidden)
Source
Children.scala
given forListSignalKeyedChildren[N <: Node[IO], K](using evidence$1: Hash[K]): Modifier[F, N, ListSignalModifier[F, K]]

Attributes

Inherited from:
KeyedChildrenModifiers (hidden)
Source
Children.scala
inline given forNode[N <: Node[IO], N2 <: Node[IO]]: Modifier[F, N, N2]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
inline given forNodeOptionSignal[N <: Node[IO], N2 <: Node[IO], S <: Signal[IO, Option[Resource[IO, N2]]]]: Modifier[F, N, S]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
inline given forNodeResource[N <: Node[IO], N2 <: Node[IO]]: Modifier[F, N, Resource[F, N2]]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
inline given forNodeSignal[N <: Node[IO], N2 <: Node[IO], S <: Signal[IO, Resource[IO, N2]]]: Modifier[F, N, S]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
inline given forOptionSignalHtmlAttr[E <: Element[IO], V]: Modifier[F, E, OptionSignalModifier[F, V]]

Attributes

Inherited from:
HtmlAttrModifiers (hidden)
Source
HtmlAttr.scala
inline given forOptionSignalProp[N, V, J]: Modifier[F, N, OptionSignalModifier[F, V, J]]

Attributes

Inherited from:
PropModifiers (hidden)
Source
Prop.scala

Attributes

Inherited from:
HtmlAttrModifiers (hidden)
Source
HtmlAttr.scala
inline given forOptionSignalResourceProp[N, V, J]: Modifier[F, N, OptionSignalResourceModifier[F, V, J]]

Attributes

Inherited from:
PropModifiers (hidden)
Source
Prop.scala
inline given forPipeEventProp[T <: Node[IO]]: Modifier[F, T, PipeModifier[F]]

Attributes

Inherited from:
EventPropModifiers (hidden)
Source
Prop.scala

Attributes

Inherited from:
ChildrenModifiers (hidden)
Source
Children.scala
inline given forSignalHtmlAttr[E <: Element[IO], V]: Modifier[F, E, SignalModifier[F, V]]

Attributes

Inherited from:
HtmlAttrModifiers (hidden)
Source
HtmlAttr.scala
inline given forSignalProp[N, V, J]: Modifier[F, N, SignalModifier[F, V, J]]

Attributes

Inherited from:
PropModifiers (hidden)
Source
Prop.scala
inline given forSignalResourceHtmlAttr[E <: Element[IO], V]: Modifier[F, E, SignalResourceModifier[F, V]]

Attributes

Inherited from:
HtmlAttrModifiers (hidden)
Source
HtmlAttr.scala
inline given forSignalResourceProp[N, V, J]: Modifier[F, N, SignalResourceModifier[F, V, J]]

Attributes

Inherited from:
PropModifiers (hidden)
Source
Prop.scala
inline given forString[E <: Node[IO]]: Modifier[F, E, String]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
inline given forStringOptionSignal[E <: Node[IO], S <: Signal[IO, Option[String]]]: Modifier[F, E, S]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
inline given forStringSignal[E <: Node[IO], S <: Signal[IO, String]]: Modifier[F, E, S]

Attributes

Inherited from:
Modifiers (hidden)
Source
Modifier.scala
given given_Dom_F: Dom[IO]

Attributes

Inherited from:
Html
Source
Html.scala