Module Virtual_dom__.Attr

include Virtual_dom__.Attr_intf.S
type t

This type covers both properties and attributes, despite the name.

val create : string ‑> string ‑> t

create name value creates a simple string-only attribute

val create_float : string ‑> float ‑> t

create_float name float creates a simple float-only attribute

val string_property : string ‑> string ‑> t

string_property name value creates a simple string-only property

val property : string ‑> Virtual_dom__.Js_of_ocaml.Js.Unsafe.any ‑> t

property name value creates a property with a generic value

val autofocus : bool ‑> t
val checked : t
val class_ : string ‑> t
val classes : string list ‑> t
val disabled : t
val for_ : string ‑> t
val href : string ‑> t
val id : string ‑> t
val placeholder : string ‑> t
val style : (string * string) list ‑> t
val style_css : string ‑> t
val tabindex : int ‑> t
val type_ : string ‑> t
val value : string ‑> t

on_input fires every time the input changes, i.e., whenever a key is pressed in the input field. The current contents are returned as an OCaml string as a convenience

on_change fires when the input is complete, i.e., when enter is pressed in the input field or the input field loses focus. The current contents are returned as an OCaml string as a convenience

val list_to_obj : t list ‑> < > Virtual_dom__.Js_of_ocaml.Js.t