Results 141 - 160 of 360

HTMLTableElement

The HTMLTableElement interface provides special properties and methods (beyond the regular HTMLElement object interface it also has available to it by inheritance) for manipulating the layout and presentation of tables in an HTML document.
API HTML DOM Interface Reference Référence

HTMLTableElement.caption

The HTMLTableElement.caption property represents the table caption. If no caption element is associated with the table, it can be null.
API HTML DOM Property Reference Référence

HTMLTableElement.insertRow()

The HTMLTableElement.insertRow() method inserts a new row in the table.
API HTML DOM HTMLTableElement Method NeedsMobileBrowserCompatibility Reference

HTMLTableElement.tFoot

The HTMLTableElement.tFoot property represents the table's <tfoot> element. Its value can be null if there is no such element.
API HTML DOM HTMLTableElement Property Reference Référence

HTMLTableElement.tHead

The HTMLTableElement.tHead represents  the table's <thead> element. Its value can be null if there is no such element.
API HTML DOM HTMLTableElement Property Reference Référence

HTMLTableHeaderCellElement

The HTMLTableHeaderCellElement interface provides special properties and methods (beyond the regular HTMLTableCellElement and HTMLElement interfaces it also has available to it by inheritance) for manipulating the layout and presentation of table header cells in an HTML document.
API HTML DOM Interface Reference Référence

HTMLTableRowElement

The HTMLTableRowElement interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of rows in an HTML table.
API HTML DOM Interface Reference Référence

HTMLTableSectionElement

The HTMLTableSectionElement interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of sections, that is headers, footers and bodies, in an HTML table.
API HTML DOM Interface Reference Référence

HTMLTextAreaElement

The HTMLTextAreaElement interface provides special properties and methods for manipulating the layout and presentation of <textarea> elements.
API HTML DOM Interface NeedsBrowserCompatibility NeedsNewLayout Reference

HTMLTimeElement

The HTMLTimeElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <time> elements.
API HTML DOM Interface Reference Référence

HTMLTimeElement.dateTime

The HTMLTimeElement.dateTime property is a DOMString that reflects the datetime HTML attribute, containing a machine-readable form of the element's date and time value.
API HTML DOM HTMLTimeElement Property Reference Référence

HTMLTitleElement

The HTMLTitleElement interface contains the title for a document. This element inherits all of the properties and methods of the HTMLElement interface.
API HTML DOM Interface Reference Référence

HTMLTrackElement

The HTMLTrackElement interface provides access to the properties of <track> elements, as well as methods to manipulate them.
API HTML DOM HTMLTrackElement Interface NeedsNewLayout Reference

HTMLUListElement

The HTMLUListElement interface provides special properties (beyond those defined on the regular HTMLElement interface it also has available to it by inheritance) for manipulating unordered list elements.
API HTML DOM Interface Reference Référence

HTMLUnknownElement

The HTMLUnknownElement interface represents an invalid HTML element and derives from the HTMLElement interface, but without implementing any additional properties or methods.
API HTML DOM Interface Reference Référence

Location

The Location interface represents the location (URL) of the object it is linked to. Changes done on it are reflected on the object it relates to. Both the Document and Window interface have such a linked Location, accessible via Document.location and Window.location respectively.
API HTML DOM Interface Location Reference

Location.assign()

The Location.assign() method causes the window to load and display the document at the URL specified.
API HTML-DOM Location Method Reference Référence

Location.reload()

The Location.reload() method reloads the resource from the current URL. Its optional unique parameter is a Boolean, which, when it is true, causes the page to always be reloaded from the server. If it is false or not specified, the browser may reload the page from its cache. Besides caching behaviour forcedReload flag also impacts how some browsers handle scroll position: ordinary reload happens to try to restore scroll position after reloading page DOM, while in forced mode (when parameter is set to true) the new DOM gets loaded with scrollTop == 0.
API HTML-DOM Location Method Reference Référence

Location.replace()

The Location.replace() method replaces the current resource with the one at the provided URL. The difference from the assign() method is that after using replace() the current page will not be saved in session History, meaning the user won't be able to use the back button to navigate to it.
API HTML-DOM Location Method Reference Référence

Navigator.vendor

Returns the name of the browser vendor for the current browser.
API HTML DOM Property Read-only