Verbose helper functions to make d3-selection bit less verbose for general html creation and manipulation.
Include as script tag (after d3) or use require("d3-html"). Make sure d3-selection is in nodepath if using the latter approach.
Then rock and roll:
// use case 1: everyday elements d3.select("body") .clear() .Div() .H1("d3-html HELLO WORLD"); // use case 2: wrapper for enter and exit d3.select("body") .Table() .Tbody() .Children([... data rows ...], 'tr', element => { element.Td().Checkbox().Checked(row => row.enabled); element.Th(row => row.field); element.Td().Select().Options({key: val, ...}, row.value); element.each(...); })
selection.A() creates <a> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Abbr() creates <abbr> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Accept() get or change accept attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Accesskey() get or change accesskey attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Action() get or change action attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Address() creates <address> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.AlignContent() get or change align-content style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.AlignItems() get or change align-items style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.AlignSelf() get or change align-self style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Alt() get or change alt attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Area() creates <area> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Article() creates <article> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Aside() creates <aside> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Audio() creates <audio> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Autocomplete() get or change autocomplete attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Autofocus() get or change autofocus attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.B() creates <b> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Background() get or change background style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundAttachment() get or change background-attachment style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundBlendMode() get or change background-blend-mode style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundClip() get or change background-clip style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundColor() get or change background-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundImage() get or change background-image style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundOrigin() get or change background-origin style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundPosition() get or change background-position style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundRepeat() get or change background-repeat style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BackgroundSize() get or change background-size style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Base() creates <base> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Bdi() creates <bdi> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Bdo() creates <bdo> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Blockquote() creates <blockquote> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Border() get or change border style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderBottom() get or change border-bottom style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderBottomColor() get or change border-bottom-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderBottomLeftRadius() get or change border-bottom-left-radius style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderBottomRightRadius() get or change border-bottom-right-radius style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderBottomStyle() get or change border-bottom-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderBottomWidth() get or change border-bottom-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderCollapse() get or change border-collapse style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderColor() get or change border-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderImage() get or change border-image style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderImageOutset() get or change border-image-outset style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderImageRepeat() get or change border-image-repeat style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderImageSlice() get or change border-image-slice style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderImageSource() get or change border-image-source style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderImageWidth() get or change border-image-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderLeft() get or change border-left style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderLeftColor() get or change border-left-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderLeftStyle() get or change border-left-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderLeftWidth() get or change border-left-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderRadius() get or change border-radius style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderRight() get or change border-right style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderRightColor() get or change border-right-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderRightStyle() get or change border-right-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderRightWidth() get or change border-right-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderSpacing() get or change border-spacing style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderStyle() get or change border-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderTop() get or change border-top style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderTopColor() get or change border-top-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderTopLeftRadius() get or change border-top-left-radius style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderTopRightRadius() get or change border-top-right-radius style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderTopStyle() get or change border-top-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderTopWidth() get or change border-top-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BorderWidth() get or change border-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Bottom() get or change bottom style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BoxDecorationBreak() get or change box-decoration-break style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BoxShadow() get or change box-shadow style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.BoxSizing() get or change box-sizing style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Br() creates <br> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Button() creates <button> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Canvas() creates <canvas> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Caption() creates <caption> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.CaptionSide() get or change caption-side style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Checkbox() creates <input> element of type checkbox
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Checked() get or change checked property value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Children() syncs children of an element to array of data elements Basically, is a wrapper for d3-selection enter and exit pattern.
Name | Type | Attribute | Description |
---|---|---|---|
arrayData | string | optional: true, default: '' | array of data |
childElementTagName | string | optional: true, default: '' | top level tag name |
updateCallback | string | optional: true, default: '' | callback called to build or update child element |
Name | Type | Attribute | Description |
---|
selection.Cite() creates <cite> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Class() get or change class attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Clear() get or change clear style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Clip() get or change clip style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Code() creates <code> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Col() creates <col> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Colgroup() creates <colgroup> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Color() get or change color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Cols() get or change cols attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Colspan() get or change colspan attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Content() get or change content style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.ContentEditable() get or change contentEditable attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Cursor() get or change cursor style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Data() creates <data> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Datalist() creates <datalist> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Date() creates <input> element of type date
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.DatetimeLocal() creates <input> element of type datetime-local
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Dd() creates <dd> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Del() creates <del> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Details() creates <details> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Dfn() creates <dfn> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Disabled() get or change disabled attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Display() get or change display style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Div() creates <div> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Dl() creates <dl> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Download() get or change download attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Draggable() get or change draggable attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Dropzone() get or change dropzone attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Dt() creates <dt> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Element() creates <element> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Em() creates <em> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Email() creates <input> element of type email
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Embed() creates <embed> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.EmptyCells() get or change empty-cells style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Enctype() get or change enctype attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Fieldset() creates <fieldset> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Figcaption() creates <figcaption> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Figure() creates <figure> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.File() creates <input> element of type file
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Flex() get or change flex style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FlexBasis() get or change flex-basis style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FlexDirection() get or change flex-direction style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FlexFlow() get or change flex-flow style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FlexGrow() get or change flex-grow style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FlexShrink() get or change flex-shrink style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FlexWrap() get or change flex-wrap style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Float() get or change float style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Font() get or change font style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontFamily() get or change font-family style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontFeatureSettings() get or change font-feature-settings style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontKerning() get or change font-kerning style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontLanguageOverride() get or change font-language-override style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontSize() get or change font-size style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontSizeAdjust() get or change font-size-adjust style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontStretch() get or change font-stretch style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontStyle() get or change font-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontSynthesis() get or change font-synthesis style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariant() get or change font-variant style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariantAlternates() get or change font-variant-alternates style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariantCaps() get or change font-variant-caps style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariantEastAsian() get or change font-variant-east-asian style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariantLigatures() get or change font-variant-ligatures style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariantNumeric() get or change font-variant-numeric style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontVariantPosition() get or change font-variant-position style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.FontWeight() get or change font-weight style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Footer() creates <footer> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.For() get or change for attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Form() creates <form> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Formaction() get or change formaction attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.H1() creates <h1> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.H2() creates <h2> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.H3() creates <h3> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.H4() creates <h4> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.H5() creates <h5> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.H6() creates <h6> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.HangingPunctuation() get or change hanging-punctuation style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
d3.HashStateRouter() Simple router that relies on window hash value. TODO: Document in more detail
Name | Type | Attribute | Description |
---|---|---|---|
context | object | optional: true, default: {} | configuration |
dontRun | boolean | optional: true, default: false | dont start |
selection.Header() creates <header> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Height() get or change height style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
Hidden(contents: string): *
selection.Hidden() creates <input> element of type hidden
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Hr() creates <hr> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Href() get or change href attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Hyphens() get or change hyphens style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.I() creates <i> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Id() get or change id attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Iframe() creates <iframe> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Image() creates <input> element of type image
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.ImeMode() get or change ime-mode style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Img() creates <img> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Input() creates <input> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputCheckbox() creates <input> element of type checkbox
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputColor() creates <input> element of type color
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputDate() creates <input> element of type date
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputDatetimeLocal() creates <input> element of type datetime-local
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputEmail() creates <input> element of type email
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputFile() creates <input> element of type file
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
InputHidden(contents: string): *
selection.InputHidden() creates <input> element of type hidden
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputImage() creates <input> element of type image
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputMonth() creates <input> element of type month
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputNumber() creates <input> element of type number
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputPassword() creates <input> element of type password
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputRadio() creates <input> element of type radio
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputRange() creates <input> element of type range
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputReset() creates <input> element of type reset
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputSearch() creates <input> element of type search
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputSubmit() creates <input> element of type submit
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputTel() creates <input> element of type tel
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputText() creates <input> element of type text
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputTime() creates <input> element of type time
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputUrl() creates <input> element of type url
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.InputWeek() creates <input> element of type week
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Ins() creates <ins> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.JustifyContent() get or change justify-content style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Kbd() creates <kbd> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Label() creates <label> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Left() get or change left style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Legend() creates <legend> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.LetterSpacing() get or change letter-spacing style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Li() creates <li> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.LineBreak() get or change line-break style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.LineHeight() get or change line-height style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Link() creates <link> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Main() creates <main> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Map() creates <map> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Margin() get or change margin style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MarginBottom() get or change margin-bottom style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MarginLeft() get or change margin-left style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MarginRight() get or change margin-right style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MarginTop() get or change margin-top style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Mark() creates <mark> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.MaxHeight() get or change max-height style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MaxWidth() get or change max-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Media() get or change media attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Meta() creates <meta> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Meter() creates <meter> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Method() get or change method attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MinHeight() get or change min-height style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.MinWidth() get or change min-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Month() creates <input> element of type month
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Name() get or change name attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Nav() creates <nav> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.NavDown() get or change nav-down style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.NavIndex() get or change nav-index style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.NavLeft() get or change nav-left style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.NavRight() get or change nav-right style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.NavUp() get or change nav-up style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Noframes() creates <noframes> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Noscript() creates <noscript> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Number() creates <input> element of type number
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Object() creates <object> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Ol() creates <ol> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.OnAbort() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnAfterprint() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnBeforeprint() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnBeforeunload() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnBlur() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnCanplay() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnCanplaythrough() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnChange() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnClick() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnContextmenu() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnCopy() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnCuechange() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnCut() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDblclick() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDrag() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDragend() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDragenter() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDragleave() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDragover() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDragstart() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDrop() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnDurationchange() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnEmptied() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnEnded() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnError() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnFocus() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnHashchange() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnInput() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnInvalid() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnKeydown() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnKeypress() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnKeyup() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnLoad() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnLoadeddata() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnLoadedmetadata() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnLoadstart() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMessage() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMousedown() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMousemove() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMouseout() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMouseover() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMouseup() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnMousewheel() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnOffline() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnOnline() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPagehide() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPageshow() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPaste() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPause() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPlay() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPlaying() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnPopstate() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnProgress() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnRatechange() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnReset() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnResize() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnScroll() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnSearch() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnSeeked() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnSeeking() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnSelect() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnShow() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnStalled() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnStorage() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnSubmit() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnSuspend() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnTimeupdate() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnToggle() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnUnload() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnVolumechange() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnWaiting() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.OnWheel() attaches or returns a listner to selection
Name | Type | Attribute | Description |
---|---|---|---|
callback | string | optional: true | callback function |
capture | boolean | optional: true | capture option |
selection.Optgroup() creates <optgroup> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Option() creates <option> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Options() creates a list of child <option> elements
Name | Type | Attribute | Description |
---|---|---|---|
options | string | optional: true, default: '' | array of strngs or key value object containing labels |
selected | string | optional: true, default: '' | selected element |
Name | Type | Attribute | Description |
---|
selection.Order() get or change order style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Outline() get or change outline style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OutlineColor() get or change outline-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OutlineOffset() get or change outline-offset style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OutlineStyle() get or change outline-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OutlineWidth() get or change outline-width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Output() creates <output> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Overflow() get or change overflow style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OverflowWrap() get or change overflow-wrap style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OverflowX() get or change overflow-x style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.OverflowY() get or change overflow-y style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.P() creates <p> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Padding() get or change padding style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.PaddingBottom() get or change padding-bottom style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.PaddingLeft() get or change padding-left style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.PaddingRight() get or change padding-right style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.PaddingTop() get or change padding-top style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Param() creates <param> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.ParentNode() get or change parentNode property value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Password() creates <input> element of type password
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Pattern() get or change pattern attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Placeholder() get or change placeholder attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Position() get or change position style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Pre() creates <pre> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Progress() creates <progress> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Q() creates <q> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Radio() creates <input> element of type radio
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Range() creates <input> element of type range
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Reset() creates <input> element of type reset
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Resize() get or change resize style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Right() get or change right style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Rowspan() get or change rowspan attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Rp() creates <rp> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Rt() creates <rt> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Rtc() creates <rtc> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Ruby() creates <ruby> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.S() creates <s> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Samp() creates <samp> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Script() creates <script> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Search() creates <input> element of type search
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Section() creates <section> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Select() creates <select> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Selected() get or change selected attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Shadow() creates <shadow> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Small() creates <small> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Source() creates <source> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Span() creates <span> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Src() get or change src attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Strong() creates <strong> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Sub() creates <sub> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Submit() creates <input> element of type submit
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Summary() creates <summary> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Sup() creates <sup> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Svg() creates <svg> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.TabSize() get or change tab-size style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Tabindex() get or change tabindex attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Table() creates <table> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.TableLayout() get or change table-layout style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Target() get or change target attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Tbody() creates <tbody> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Td() creates <td> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Tel() creates <input> element of type tel
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Template() creates <template> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Text() creates <input> element of type text
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.TextAlign() get or change text-align style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextAlignLast() get or change text-align-last style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextCombineUpright() get or change text-combine-upright style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextDecoration() get or change text-decoration style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextDecorationColor() get or change text-decoration-color style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextDecorationLine() get or change text-decoration-line style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextDecorationStyle() get or change text-decoration-style style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextIndent() get or change text-indent style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextJustify() get or change text-justify style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextOverflow() get or change text-overflow style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextShadow() get or change text-shadow style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextTransform() get or change text-transform style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.TextUnderlinePosition() get or change text-underline-position style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Textarea() creates <textarea> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Tfoot() creates <tfoot> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Th() creates <th> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Thead() creates <thead> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Time() creates <input> element of type time
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Title() get or change title attribute value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Top() get or change top style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Tr() creates <tr> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Track() creates <track> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.U() creates <u> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Ul() creates <ul> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Url() creates <input> element of type url
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.UserSelect() get or change user-select style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Validity() get or change validity property value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Value() get or change value property value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Var() creates <var> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.VerticalAlign() get or change vertical-align style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Video() creates <video> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Visibility() get or change visibility style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Wbr() creates <wbr> element
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.Week() creates <input> element of type week
Name | Type | Attribute | Description |
---|---|---|---|
contents | string | optional: true, default: '' | option content html |
selection.WhiteSpace() get or change white-space style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.Width() get or change width style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.WordBreak() get or change word-break style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.WordSpacing() get or change word-spacing style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.WordWrap() get or change word-wrap style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.ZIndex() get or change z-index style value of selection
Name | Type | Attribute | Description |
---|---|---|---|
value | string | optional: true, default: '' | new value or dont specify to return current value |
selection.clear() clears selection content
Name | Type | Attribute | Description |
---|