Liking cljdoc? Tell your friends :D

web.dom.HTMLTableElement

The HTMLTableElement interface provides special properties and (beyond the regular web.dom.HTMLElement object interface it has available to it by inheritance) for manipulating the layout presentation of tables in an HTML document.

The HTMLTableElement interface provides special properties and
(beyond the regular `web.dom.HTMLElement` object interface it
has available to it by inheritance) for manipulating the layout
presentation of tables in an HTML document.
raw docstring

aligncljs

(align this)

Property.

[Deprecated]

The HTMLTableElement.align property represents the alignment the table.

HTMLTableElement.align = alignment; var alignment = HTMLTableElement.align;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/align

Property.

[Deprecated]

The HTMLTableElement.align property represents the alignment
the table.

`HTMLTableElement.align = alignment;
var alignment = HTMLTableElement.align;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/align`
sourceraw docstring

bg-colorcljs

(bg-color this)

Property.

[Deprecated]

The HTMLTableElement.bgcolor property represents the background of the table.

color = table.bgColor table.bgColor = color

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/bgColor

Property.

[Deprecated]

The HTMLTableElement.bgcolor property represents the background
of the table.

`color = table.bgColor
table.bgColor = color`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/bgColor`
sourceraw docstring

bordercljs

(border this)

Property.

[Deprecated]

The HTMLTableElement.border property represents the border width the <table> element.

`HTMLTableElement.border = border; var border = HTMLTableElement.border;

border is a string representing the width of the border in pixels.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/border

Property.

[Deprecated]

The HTMLTableElement.border property represents the border width
the `<table>` element.

`HTMLTableElement.border = border;
var border = HTMLTableElement.border;


border is a string representing the width of the border in pixels.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/border`
sourceraw docstring

captioncljs

(caption this)

Property.

The HTMLTableElement.caption property represents the table caption. no caption element is associated with the table, this property null.

var string = tableElement.caption;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/caption

Property.

The HTMLTableElement.caption property represents the table caption.
no caption element is associated with the table, this property
null.

`var string = tableElement.caption;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/caption`
sourceraw docstring

cell-paddingcljs

(cell-padding this)

Property.

The HTMLTableElement.cellPadding property represents the padding the individual cells of the table.

`HTMLTableElement.cellPadding = padding; var padding = HTMLTableElement.cellPadding;

padding is either a number of pixels (e.g. "10") or a percentage value (e.g. "10%").`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellPadding

Property.

The HTMLTableElement.cellPadding property represents the padding
the individual cells of the table.

`HTMLTableElement.cellPadding = padding;
var padding = HTMLTableElement.cellPadding;


padding is either a number of pixels (e.g. \"10\") or a percentage value (e.g. \"10%\").`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellPadding`
sourceraw docstring

cell-spacingcljs

(cell-spacing this)

Property.

[Obsolute]

While you should instead use the CSS border-spacing property, obsolete web.dom.HTMLTableElement interface's cellSpacing property the spacing around the individual <th> and <td> elements a table's cells.

HTMLTableElement.cellSpacing = spacing; var spacing = HTMLTableElement.cellSpacing;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellSpacing

Property.

[Obsolute]

While you should instead use the CSS `border-spacing` property,
obsolete `web.dom.HTMLTableElement` interface's cellSpacing property
the spacing around the individual `<th>` and `<td>` elements
a table's cells.

`HTMLTableElement.cellSpacing = spacing;
var spacing = HTMLTableElement.cellSpacing;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellSpacing`
sourceraw docstring

create-captioncljs

(create-caption this)

Method.

The HTMLTableElement.createCaption() method returns the <caption> associated with a given <table>. If no <caption> element exists the table, this method creates it, and then returns it.

HTMLTableElement = table.createCaption();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createCaption

Method.

The HTMLTableElement.createCaption() method returns the `<caption>`
associated with a given `<table>`. If no <caption> element exists
the table, this method creates it, and then returns it.

`HTMLTableElement = table.createCaption();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createCaption`
sourceraw docstring

create-t-footcljs

(create-t-foot this)

Method.

The HTMLTableElement.createTFoot() method returns the <tfoot> associated with a given <table>. If no footer exists in the this methods creates it, and then returns it.

HTMLTableSectionElement = table.createTFoot();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createTFoot

Method.

The HTMLTableElement.createTFoot() method returns the `<tfoot>`
associated with a given `<table>`. If no footer exists in the
this methods creates it, and then returns it.

`HTMLTableSectionElement = table.createTFoot();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createTFoot`
sourceraw docstring

create-t-headcljs

(create-t-head this)

Method.

The HTMLTableElement.createTHead() method returns the <thead> associated with a given <table>. If no header exists in the this method creates it, and then returns it.

HTMLTableSectionElement = table.createTHead();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createTHead

Method.

The HTMLTableElement.createTHead() method returns the `<thead>`
associated with a given `<table>`. If no header exists in the
this method creates it, and then returns it.

`HTMLTableSectionElement = table.createTHead();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createTHead`
sourceraw docstring

delete-captioncljs

(delete-caption this)

Method.

The HTMLTableElement.deleteCaption() method removes the <caption> from a given <table>. If there is no <caption> element associated the table, this method does nothing.

HTMLTableElement.deleteCaption()

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteCaption

Method.

The HTMLTableElement.deleteCaption() method removes the `<caption>`
from a given `<table>`. If there is no <caption> element associated
the table, this method does nothing.

`HTMLTableElement.deleteCaption()`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteCaption`
sourceraw docstring

delete-rowcljs

(delete-row this index)

Method.

The HTMLTableElement.deleteRow() method removes a specific row from a given <table>.

HTMLTableElement.deleteRow(index)

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteRow

Method.

The HTMLTableElement.deleteRow() method removes a specific row
from a given `<table>`.

`HTMLTableElement.deleteRow(index)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteRow`
sourceraw docstring

delete-t-footcljs

(delete-t-foot this)

Method.

The HTMLTableElement.deleteTFoot() method removes the <tfoot> from a given <table>.

HTMLTableElement.deleteTFoot();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteTFoot

Method.

The HTMLTableElement.deleteTFoot() method removes the `<tfoot>`
from a given `<table>`.

`HTMLTableElement.deleteTFoot();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteTFoot`
sourceraw docstring

delete-t-headcljs

(delete-t-head this)

Method.

The HTMLTableElement.deleteTHead() removes the <thead> element a given <table>.

HTMLTableElement.deleteTHead();

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteTHead

Method.

The HTMLTableElement.deleteTHead() removes the `<thead>` element
a given `<table>`.

`HTMLTableElement.deleteTHead();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/deleteTHead`
sourceraw docstring

framecljs

(frame this)

Property.

The web.dom.HTMLTableElement interface's frame property is string that indicates which of the table's exterior borders should drawn.

HTMLTableElement.frame = frameSides; var frameSides = HTMLTableElement.frame;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/frame

Property.

The `web.dom.HTMLTableElement` interface's frame property is
string that indicates which of the table's exterior borders should
drawn.

`HTMLTableElement.frame = frameSides;
var frameSides = HTMLTableElement.frame;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/frame`
sourceraw docstring

insert-rowcljs

(insert-row this & args)

Method.

The HTMLTableElement.insertRow() method inserts a new row (<tr>) a given <table>, and returns a reference to the new row.

`var newRow = HTMLTableElement.insertRow(index);

web.dom.HTMLTableElement is a reference to an HTML <table> element.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/insertRow

Method.

The HTMLTableElement.insertRow() method inserts a new row (`<tr>`)
a given `<table>`, and returns a reference to the new row.

`var newRow = HTMLTableElement.insertRow(index);

`web.dom.HTMLTableElement` is a reference to an HTML `<table>` element.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/insertRow`
sourceraw docstring

rowscljs

(rows this)

Property.

[Read Only]

The read-only web.dom.HTMLTableElement property rows returns live web.HTMLCollection of all the rows in the table, including rows contained within any <thead>, <tfoot>, and <tbody>

HTMLCollectionObject = table.rows;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/rows

Property.

[Read Only]

The read-only `web.dom.HTMLTableElement` property rows returns
live `web.HTMLCollection` of all the rows in the table, including
rows contained within any `<thead>`, `<tfoot>`, and `<tbody>`

`HTMLCollectionObject = table.rows;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/rows`
sourceraw docstring

rulescljs

(rules this)

Property.

The HTMLTableElement.rules property indicates which cell borders render in the table.

HTMLTableElement.rules = rules; var rules = HTMLTableElement.rules;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/rules

Property.

The HTMLTableElement.rules property indicates which cell borders
render in the table.

`HTMLTableElement.rules = rules;
var rules = HTMLTableElement.rules;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/rules`
sourceraw docstring

set-align!cljs

(set-align! this val)

Property.

[Deprecated]

The HTMLTableElement.align property represents the alignment the table.

HTMLTableElement.align = alignment; var alignment = HTMLTableElement.align;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/align

Property.

[Deprecated]

The HTMLTableElement.align property represents the alignment
the table.

`HTMLTableElement.align = alignment;
var alignment = HTMLTableElement.align;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/align`
sourceraw docstring

set-bg-color!cljs

(set-bg-color! this val)

Property.

[Deprecated]

The HTMLTableElement.bgcolor property represents the background of the table.

color = table.bgColor table.bgColor = color

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/bgColor

Property.

[Deprecated]

The HTMLTableElement.bgcolor property represents the background
of the table.

`color = table.bgColor
table.bgColor = color`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/bgColor`
sourceraw docstring

set-border!cljs

(set-border! this val)

Property.

[Deprecated]

The HTMLTableElement.border property represents the border width the <table> element.

`HTMLTableElement.border = border; var border = HTMLTableElement.border;

border is a string representing the width of the border in pixels.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/border

Property.

[Deprecated]

The HTMLTableElement.border property represents the border width
the `<table>` element.

`HTMLTableElement.border = border;
var border = HTMLTableElement.border;


border is a string representing the width of the border in pixels.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/border`
sourceraw docstring

set-caption!cljs

(set-caption! this val)

Property.

The HTMLTableElement.caption property represents the table caption. no caption element is associated with the table, this property null.

var string = tableElement.caption;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/caption

Property.

The HTMLTableElement.caption property represents the table caption.
no caption element is associated with the table, this property
null.

`var string = tableElement.caption;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/caption`
sourceraw docstring

set-cell-padding!cljs

(set-cell-padding! this val)

Property.

The HTMLTableElement.cellPadding property represents the padding the individual cells of the table.

`HTMLTableElement.cellPadding = padding; var padding = HTMLTableElement.cellPadding;

padding is either a number of pixels (e.g. "10") or a percentage value (e.g. "10%").`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellPadding

Property.

The HTMLTableElement.cellPadding property represents the padding
the individual cells of the table.

`HTMLTableElement.cellPadding = padding;
var padding = HTMLTableElement.cellPadding;


padding is either a number of pixels (e.g. \"10\") or a percentage value (e.g. \"10%\").`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellPadding`
sourceraw docstring

set-cell-spacing!cljs

(set-cell-spacing! this val)

Property.

[Obsolute]

While you should instead use the CSS border-spacing property, obsolete web.dom.HTMLTableElement interface's cellSpacing property the spacing around the individual <th> and <td> elements a table's cells.

HTMLTableElement.cellSpacing = spacing; var spacing = HTMLTableElement.cellSpacing;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellSpacing

Property.

[Obsolute]

While you should instead use the CSS `border-spacing` property,
obsolete `web.dom.HTMLTableElement` interface's cellSpacing property
the spacing around the individual `<th>` and `<td>` elements
a table's cells.

`HTMLTableElement.cellSpacing = spacing;
var spacing = HTMLTableElement.cellSpacing;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/cellSpacing`
sourceraw docstring

set-frame!cljs

(set-frame! this val)

Property.

The web.dom.HTMLTableElement interface's frame property is string that indicates which of the table's exterior borders should drawn.

HTMLTableElement.frame = frameSides; var frameSides = HTMLTableElement.frame;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/frame

Property.

The `web.dom.HTMLTableElement` interface's frame property is
string that indicates which of the table's exterior borders should
drawn.

`HTMLTableElement.frame = frameSides;
var frameSides = HTMLTableElement.frame;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/frame`
sourceraw docstring

set-rules!cljs

(set-rules! this val)

Property.

The HTMLTableElement.rules property indicates which cell borders render in the table.

HTMLTableElement.rules = rules; var rules = HTMLTableElement.rules;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/rules

Property.

The HTMLTableElement.rules property indicates which cell borders
render in the table.

`HTMLTableElement.rules = rules;
var rules = HTMLTableElement.rules;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/rules`
sourceraw docstring

set-sortable!cljs

(set-sortable! this val)

Property.

Is a Boolean value indicating if the user agent is allowed to sorting mechanism for the table, if it supports such a feature. property reflects the sortable attribute.

Property.

Is a Boolean value indicating if the user agent is allowed to
sorting mechanism for the table, if it supports such a feature.
property reflects the sortable attribute.
sourceraw docstring

set-summary!cljs

(set-summary! this val)

Property.

The HTMLTableElement.summary property represents the table description.

HTMLTableElement.summary = string; varstring = HTMLTableElement.summary;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/summary

Property.

The HTMLTableElement.summary property represents the table description.

`HTMLTableElement.summary = string;
varstring = HTMLTableElement.summary;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/summary`
sourceraw docstring

set-t-foot!cljs

(set-t-foot! this val)

Property.

The HTMLTableElement.tFoot property represents the <tfoot> of a <table>. Its value will be null if there is no such element.

HTMLTableSectionElementObject = table.tFoot table.tFoot = HTMLTableSectionElementObject

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tFoot

Property.

The HTMLTableElement.tFoot property represents the `<tfoot>`
of a `<table>`. Its value will be null if there is no such element.

`HTMLTableSectionElementObject = table.tFoot
table.tFoot = HTMLTableSectionElementObject`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tFoot`
sourceraw docstring

set-t-head!cljs

(set-t-head! this val)

Property.

The HTMLTableElement.tHead represents the <thead> element of <table> . Its value will be null if there is no such element.

thead_element = table.tHead; table.tHead = thead_element;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tHead

Property.

The HTMLTableElement.tHead represents the `<thead>` element of
`<table>` . Its value will be null if there is no such element.

`thead_element = table.tHead;
table.tHead = thead_element;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tHead`
sourceraw docstring

set-width!cljs

(set-width! this val)

Property.

The HTMLTableElement.width property represents the desired width the table.

`HTMLTableElement.width = width; var width = HTMLTableElement.width;

Where width is a string representing the width in number of pixels or as a percentage value.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/width

Property.

The HTMLTableElement.width property represents the desired width
the table.

`HTMLTableElement.width = width;
var width = HTMLTableElement.width;

Where width is a string representing the width in number of pixels or as a percentage value.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/width`
sourceraw docstring

sortablecljs

(sortable this)

Property.

Is a Boolean value indicating if the user agent is allowed to sorting mechanism for the table, if it supports such a feature. property reflects the sortable attribute.

Property.

Is a Boolean value indicating if the user agent is allowed to
sorting mechanism for the table, if it supports such a feature.
property reflects the sortable attribute.
sourceraw docstring

stop-sortingcljs

(stop-sorting this & args)

Method.

Removes the sortable attribute to all <th> elements of the table.

Method.

Removes the sortable attribute to all <th> elements of the table.
sourceraw docstring

summarycljs

(summary this)

Property.

The HTMLTableElement.summary property represents the table description.

HTMLTableElement.summary = string; varstring = HTMLTableElement.summary;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/summary

Property.

The HTMLTableElement.summary property represents the table description.

`HTMLTableElement.summary = string;
varstring = HTMLTableElement.summary;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/summary`
sourceraw docstring

t-bodiescljs

(t-bodies this)

Property.

[Read Only]

The HTMLTableElement.tBodies read-only property returns a live of the bodies in a <table>.

HTMLCollectionObject = table.tBodies

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tBodies

Property.

[Read Only]

The HTMLTableElement.tBodies read-only property returns a live
of the bodies in a `<table>`.

`HTMLCollectionObject = table.tBodies`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tBodies`
sourceraw docstring

t-footcljs

(t-foot this)

Property.

The HTMLTableElement.tFoot property represents the <tfoot> of a <table>. Its value will be null if there is no such element.

HTMLTableSectionElementObject = table.tFoot table.tFoot = HTMLTableSectionElementObject

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tFoot

Property.

The HTMLTableElement.tFoot property represents the `<tfoot>`
of a `<table>`. Its value will be null if there is no such element.

`HTMLTableSectionElementObject = table.tFoot
table.tFoot = HTMLTableSectionElementObject`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tFoot`
sourceraw docstring

t-headcljs

(t-head this)

Property.

The HTMLTableElement.tHead represents the <thead> element of <table> . Its value will be null if there is no such element.

thead_element = table.tHead; table.tHead = thead_element;

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tHead

Property.

The HTMLTableElement.tHead represents the `<thead>` element of
`<table>` . Its value will be null if there is no such element.

`thead_element = table.tHead;
table.tHead = thead_element;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/tHead`
sourceraw docstring

widthcljs

(width this)

Property.

The HTMLTableElement.width property represents the desired width the table.

`HTMLTableElement.width = width; var width = HTMLTableElement.width;

Where width is a string representing the width in number of pixels or as a percentage value.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/width

Property.

The HTMLTableElement.width property represents the desired width
the table.

`HTMLTableElement.width = width;
var width = HTMLTableElement.width;

Where width is a string representing the width in number of pixels or as a percentage value.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/width`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close