javascript TABLE refresh( )

Advises the data binding facilities to reload the current page of data from the data source. If your table is retrieving frequently-changing data from

javascript TABLE moveRow( )

Moves a row in the table from its original location to a different row position. The first parameter is a zero-based index of the row (within the r

javascript TABLE lastPage( ), nextPage( ), previousPage( )

Advises the data binding facilities to load the last, next, or previous group of records from the data source to fill the number of records establis

javascript TABLE insertRow( )

Inserts a tr element nested within the current table element. The integer parameter points to the zero-based index in the rows collection where the ne

javascript TABLE deleteRow( )

Removes a tr element nested within the current table element. The integer parameter points to the zero-based item in the rows collection. To

javascript TABLE createTFoot( ), createTHead( ), deleteTFoot( ), deleteTHead( )

Add or remove a thead or tfoot element nested within the current table element.

javascript TABLE createCaption( ), deleteCaption( )

Add or remove a caption element nested within the current table element. If no caption exists, the creation method produces an empty element, which yo

javascript TABLE width

The width property of TABLE is described in chapter: javascript TABLE height, width

javascript TABLE tHead

Returns a reference to the thead element object if one has been defined for the table. If no thead element exists, the value is null . You can

javascript TABLE tFoot

Returns a reference to the tfoot element object if one has been defined for the table. If no tfoot element exists, the value is null . You can

javascript TABLE tBodies[ ]

Returns a collection of tBody objects in the current table. Every table element has at least one (explicit or implied) tBody object nested in

javascript TABLE tabIndex

This is a number that indicates the sequence of this TABLE element within the tabbing order of all focusable elements in the document.

javascript TABLE summary

Reflects the HTML 4 summary attribute, which provides no particular functionality in mainstream browsers. But you can assign a value to it in the

javascript TABLE scrollLeft, scrollTop

Provide the distance in pixels between the actual left or top edge of the TABLE element's physical content and the left or top edge of the visible por

javascript TABLE scrollHeight, scrollWidth

This property of TABLE is same as the BODY's. Please see BODY's instead: