1.1. HTML4 table commands

1.1.1. tableColumn

Parameter syntax:

insertBefore [ td | th ]? |
insertAfter [ td | th ]? |
delete

A td or th element must be implicitly or explicitly selected.

insertBefore [ td | th ]?

Inserts a column before column containing selected cell.

If option td (or th) is specified, a new homogeneous column containing only td (or th) cells is created. Otherwise the newly created column has cells similar to those of the column containing selected cell.

insertAfter [ td | th ]?

Inserts a column after column containing selected cell.

delete

Deletes column containing selected cell.

1.1.2. tableRow

Parameter syntax:

insertBefore [ td | th ]? |
insertAfter [ td | th ]? |
delete

A td or th element must be implicitly or explicitly selected. If a tr element is explicitly selected, this is equivalent to having selected its first cell.

insertBefore [ td | th ]?

Inserts a row before row containing selected cell.

If option td (or th) is specified, a new homogeneous row containing only td (or th) cells is created. Otherwise the newly created row has cells similar to those of the row containing selected cell.

insertAfter [ td | th ]?

Inserts a row before row containing selected cell.

delete

Deletes row containing selected cell.