scalatags.generic

Attrs

trait Attrs[Builder, Output <: FragT, FragT] extends InputAttrs[Builder, Output, FragT] with ClipboardEventAttrs[Builder, Output, FragT] with MediaEventAttrs[Builder, Output, FragT] with MiscellaneousEventAttrs[Builder, Output, FragT] with KeyboardEventAttrs[Builder, Output, FragT] with MouseEventAttrs[Builder, Output, FragT] with WindowEventAttrs[Builder, Output, FragT] with FormEventAttrs[Builder, Output, FragT]

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

Linear Supertypes
FormEventAttrs[Builder, Output, FragT], WindowEventAttrs[Builder, Output, FragT], MouseEventAttrs[Builder, Output, FragT], KeyboardEventAttrs[Builder, Output, FragT], MiscellaneousEventAttrs[Builder, Output, FragT], MediaEventAttrs[Builder, Output, FragT], SharedEventAttrs[Builder, Output, FragT], ClipboardEventAttrs[Builder, Output, FragT], InputAttrs[Builder, Output, FragT], GlobalAttrs[Builder, Output, FragT], Util[Builder, Output, FragT], LowPriUtil[Builder, Output, FragT], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Attrs
  2. FormEventAttrs
  3. WindowEventAttrs
  4. MouseEventAttrs
  5. KeyboardEventAttrs
  6. MiscellaneousEventAttrs
  7. MediaEventAttrs
  8. SharedEventAttrs
  9. ClipboardEventAttrs
  10. InputAttrs
  11. GlobalAttrs
  12. Util
  13. LowPriUtil
  14. AnyRef
  15. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type ConcreteHtmlTag[T <: Output] <: TypedTag[Builder, T, FragT]

    Definition Classes
    Util
  2. class DataAttribute extends Dynamic

    Definition Classes
    GlobalAttrs
  3. implicit class ExtendedString extends AnyRef

    Provides extension methods on strings to fit them into Scalatag fragments.

    Provides extension methods on strings to fit them into Scalatag fragments.

    Definition Classes
    Util
  4. implicit class SeqNode[A] extends Modifier[Builder]

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Definition Classes
    Util

Abstract Value Members

  1. implicit abstract def SeqFrag[A](xs: Seq[A])(implicit arg0: (A) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  2. implicit abstract def UnitFrag(u: Unit): Frag[Builder, FragT]

    Lets you put Unit into a scalatags tree, as a no-op.

    Lets you put Unit into a scalatags tree, as a no-op.

    Definition Classes
    LowPriUtil
  3. abstract def makeAbstractTypedTag[T <: Output](tag: String, void: Boolean, namespaceConfig: Namespace): ConcreteHtmlTag[T]

    Definition Classes
    Util
  4. implicit abstract def stringAttrX: AttrValue[Builder, String]

    Attributes
    protected[this]
    Definition Classes
    Util
  5. implicit abstract def stringPixelStyleX: PixelStyleValue[Builder, String]

    Attributes
    protected[this]
    Definition Classes
    Util
  6. implicit abstract def stringStyleX: StyleValue[Builder, String]

    Attributes
    protected[this]
    Definition Classes
    Util

Concrete Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. implicit def ArrayFrag[A](xs: Array[A])(implicit arg0: (A) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  5. implicit def ArrayNode[A](xs: Array[A])(implicit arg0: (A) ⇒ Modifier[Builder]): SeqNode[A]

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Definition Classes
    Util
  6. implicit def OptionFrag[A](xs: Option[A])(implicit arg0: (A) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Renders an Option of FragT into a single FragT

    Renders an Option of FragT into a single FragT

    Definition Classes
    LowPriUtil
  7. implicit def OptionNode[A](xs: Option[A])(implicit arg0: (A) ⇒ Modifier[Builder]): SeqNode[A]

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Definition Classes
    Util
  8. val accept: Attr

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

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

    MDN

  9. val accesskey: Attr

    Specifies a shortcut key to activate/focus an element

    Specifies a shortcut key to activate/focus an element

    Definition Classes
    GlobalAttrs
  10. val action: Attr

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

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

    MDN

    Definition Classes
    InputAttrs
  11. val alt: Attr

    This attribute defines the alternative text describing the image.

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

    MDN

  12. object aria

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

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

    MDN

  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. val autocomplete: Attr

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

    This attribute indicates whether the value of the control can be automatically completed by the browser. This attribute is ignored if the value of the type attribute is hidden, checkbox, radio, file, or a button type (button, submit, reset, image).

    Possible values are "off" and "on"

    MDN

    Definition Classes
    InputAttrs
  15. val autofocus: AttrPair[Builder, String]

    This Boolean attribute lets you specify that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control.

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

    MDN

    Definition Classes
    InputAttrs
  16. val charset: Attr

    Declares the character encoding of the page or script.

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

    MDN

  17. val checked: Attr

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

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

    MDN

    Definition Classes
    InputAttrs
  18. val class: Attr

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

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

    MDN

    Definition Classes
    GlobalAttrs
  19. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. val cls: Attr

    Shorthand for the class attribute

    Shorthand for the class attribute

    Definition Classes
    GlobalAttrs
  21. val cols: Attr

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

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

    MDN

  22. val colspan: Attr

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

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

  23. val content: Attr

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

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

    MDN

  24. val contenteditable: Attr

    Definition Classes
    GlobalAttrs
  25. val contextmenu: Attr

    Definition Classes
    GlobalAttrs
  26. def data(suffix: String): Attr

    Definition Classes
    GlobalAttrs
  27. object data extends DataAttribute

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

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

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

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

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

    MDN

    Definition Classes
    GlobalAttrs
  28. val dir: Attr

    Specifies the text direction for the content in an element.

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

    - ltr Default. Left-to-right text direction

    - rtl Right-to-left text direction

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

    Definition Classes
    GlobalAttrs
  29. val disabled: AttrPair[Builder, String]

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

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

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

    MDN

  30. val draggable: Attr

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

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

    Definition Classes
    GlobalAttrs
  31. val dropzone: Attr

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

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

    Definition Classes
    GlobalAttrs
  32. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  34. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. val for: Attr

    Describes elements which belongs to this one.

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

    MDN

  36. val formA: Attr

    The form attribute specifies one or more forms an ` element belongs to.

    The form attribute specifies one or more forms an ` element belongs to.

    Definition Classes
    InputAttrs
  37. val formaction: Attr

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

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

    Definition Classes
    InputAttrs
  38. val formenctype: Attr

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

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

    Definition Classes
    InputAttrs
  39. val formmethod: Attr

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

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

    Definition Classes
    InputAttrs
  40. val formnovalidate: Attr

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

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

    Definition Classes
    InputAttrs
  41. val formtarget: Attr

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

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

    Definition Classes
    InputAttrs
  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  44. val heightA: Attr

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

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

    Definition Classes
    InputAttrs
  45. val hidden: Attr

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

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

    Definition Classes
    GlobalAttrs
  46. val href: Attr

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

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

    MDN

  47. val httpEquiv: Attr

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

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

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

    MDN

  48. val id: Attr

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

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

    MDN

    Definition Classes
    GlobalAttrs
  49. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  50. val lang: Attr

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

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

    MDN

    Definition Classes
    GlobalAttrs
  51. val list: Attr

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

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

    Definition Classes
    InputAttrs
  52. val max: Attr

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

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

    Definition Classes
    InputAttrs
  53. val maxlength: Attr

    The maximum allowed length for the input field.

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

    Definition Classes
    InputAttrs
  54. val media: Attr

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

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

    See also

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

  55. val method: Attr

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

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

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

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

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

    MDN

    Definition Classes
    InputAttrs
  56. val min: Attr

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

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

    Definition Classes
    InputAttrs
  57. val multiple: Attr

    This Boolean attribute specifies, when present/true, that the user is allowed to enter more than one value for the element for types "email" or "file". It can also be provided to the element for types "email" or "file". It can also be provided to the ). MDN

    The submit event is raised when the user clicks a submit button in a form (). MDN

    Definition Classes
    FormEventAttrs
  58. val onsuspend: Attr

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

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

    Definition Classes
    MediaEventAttrs
  59. val ontimeupdate: Attr

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

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

    Definition Classes
    MediaEventAttrs
  60. val ontoggle: Attr

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

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

    Definition Classes
    MiscellaneousEventAttrs
  61. val onunload: Attr

    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)

    Definition Classes
    WindowEventAttrs
  62. val onvolumechange: Attr

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

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

    Definition Classes
    MediaEventAttrs
  63. val onwaiting: Attr

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

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

    Definition Classes
    MediaEventAttrs
  64. val onwheel: Attr

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

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

    Definition Classes
    MouseEventAttrs
  65. val pattern: Attr

    Specifies a regular expression to validate the input.

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

    Definition Classes
    InputAttrs
  66. val placeholder: Attr

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

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

    MDN

    Definition Classes
    InputAttrs
  67. val readonly: AttrPair[Builder, String]

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

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

    MDN

    Definition Classes
    InputAttrs
  68. val rel: Attr

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

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

    MDN

  69. val required: AttrPair[Builder, String]

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

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

    MDN

    Definition Classes
    InputAttrs
  70. val role: Attr

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

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

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

  71. val rows: Attr

    The number of visible text lines for the control.

    The number of visible text lines for the control.

    MDN

  72. val rowspan: Attr

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

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

  73. val selected: Attr

    Indicates a selected option in an option list of a

    Indicates a selected option in an option list of a element that should be considered legal for the input. For example, if step is 2 on a number typed 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 elements of the following types: number, range, date, datetime, datetime-local, month, time and week.

    The step attribute specifies the numeric intervals for an element that should be considered legal for the input. For example, if step is 2 on a number typed 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 elements of the following types: number, range, date, datetime, datetime-local, month, time and week.

    Definition Classes
    InputAttrs
  74. val style: Attr

    This attribute contains CSS styling declarations to be applied to the element.

    This attribute contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the style element have mainly the purpose of allowing for quick styling, for example for testing purposes.

    MDN

    Definition Classes
    GlobalAttrs
  75. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  76. val tabindex: Attr

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

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

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

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

    Definition Classes
    GlobalAttrs
  77. val target: Attr

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

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

    - _self: Load the response into the same HTML 4 frame (or HTML5 browsing context) as the current one. This value is the default if the attribute is not specified. - _blank: Load the response into a new unnamed HTML 4 window or HTML5 browsing context. - _parent: Load the response into the HTML 4 frameset parent of the current frame or HTML5 parent browsing context of the current one. If there is no parent, this option behaves the same way as _self. - _top: HTML 4: Load the response into the full, original window, canceling all other frames. HTML5: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self. - iframename: The response is displayed in a named iframe.

    Definition Classes
    InputAttrs
  78. val title: Attr

    This attribute contains a text representing advisory information related to the element it belongs too.

    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.

    MDN

    Definition Classes
    GlobalAttrs
  79. def toString(): String

    Definition Classes
    AnyRef → Any
  80. val tpe: Attr

    Shorthand for the type attribute

    Shorthand for the type attribute

    Definition Classes
    InputAttrs
  81. val translate: Attr

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

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

    Definition Classes
    GlobalAttrs
  82. val type: Attr

    This attribute is used to define the type of the content linked to.

    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.

    MDN

    Definition Classes
    InputAttrs
  83. val value: Attr

    The initial value of the control.

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

    MDN

    Definition Classes
    InputAttrs
  84. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  87. val widthA: Attr

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

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

    Definition Classes
    InputAttrs
  88. val xmlns: Attr

Inherited from FormEventAttrs[Builder, Output, FragT]

Inherited from WindowEventAttrs[Builder, Output, FragT]

Inherited from MouseEventAttrs[Builder, Output, FragT]

Inherited from KeyboardEventAttrs[Builder, Output, FragT]

Inherited from MiscellaneousEventAttrs[Builder, Output, FragT]

Inherited from MediaEventAttrs[Builder, Output, FragT]

Inherited from SharedEventAttrs[Builder, Output, FragT]

Inherited from ClipboardEventAttrs[Builder, Output, FragT]

Inherited from InputAttrs[Builder, Output, FragT]

Inherited from GlobalAttrs[Builder, Output, FragT]

Inherited from Util[Builder, Output, FragT]

Inherited from LowPriUtil[Builder, Output, FragT]

Inherited from AnyRef

Inherited from Any

Ungrouped