Results 161 - 180 of 209

Element.clientHeight

The Element.clientHeight read-only property is zero for elements with no CSS or inline layout boxes, otherwise it's  the inner height of an element in pixels, including padding but not the horizontal scrollbar height, border, or margin.
API CSSOM View NeedsBrowserCompatibility NeedsMarkupWork NeedsMobileBrowserCompatibility Property Reference Référence

Element.clientWidth

The Element.clientWidth property is zero for elements with no CSS or inline layout boxes, otherwise it's the inner width of an element in pixels. It includes padding but not the vertical scrollbar (if present, if rendered), border or margin.
API CSSOM View NeedsBrowserCompatibility NeedsMarkupWork NeedsMobileBrowserCompatibility Property Reference Référence

Element.getClientRects()

The Element.getClientRects() method returns a collection of rectangles that indicate the bounding rectangles for each box in a client.
API CSSOM View Method NeedsBrowserAgnostic NeedsBrowserCompatibility NeedsCompatTable NeedsMarkupWork NeedsMobileBrowserCompatibility Reference

EventTarget.dispatchEvent()

Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent().
API DOM DOM Element Methods Gecko Method NeedsBrowserCompatibility NeedsMobileBrowserCompatibility

HTMLElement

The HTMLElement interface represents any HTML element. Some elements directly implement this interface, others implement it via an interface that inherits it.
API HTML DOM Interface NeedsMobileBrowserCompatibility NeedsNewLayout Reference Référence

HTMLElement.offsetHeight

The HTMLElement.offsetHeight read-only property is the height of the element including vertical padding and borders, in pixels, as an integer.
API CSSOM View NeedsBrowserCompatibility NeedsMarkupWork NeedsMobileBrowserCompatibility NeedsNonDHMLImage Property Reference

HTMLElement.offsetParent

The HTMLElement.offsetParent read-only property returns a reference to the object which is the closest (nearest in the containment hierarchy) positioned containing element. If the element is non-positioned, the nearest table cell or root element (html in standards compliant mode; body in quirks rendering mode) is the offsetParent. offsetParent returns null when the element has style.display set to "none". The offsetParent is useful because offsetTop and offsetLeft are relative to its padding edge.
API CSSOM View NeedsBrowserCompatibility NeedsMarkupWork NeedsMobileBrowserCompatibility Property Reference

HTMLSelectElement.selectedIndex

The HTMLSelectElement.selectedIndex is a long that reflects the index of the first selected <option> element. The value -1 indicates that no element is selected.
API HTML DOM HTML forms HTMLSelectElement NeedsBrowserCompatibility NeedsMobileBrowserCompatibility Property Reference

HTMLTableRowElement.insertCell()

The HTMLTableRowElement.insertCell() method inserts a new cell into a table row and returns a reference to the cell.
API HTML DOM HTMLTableRowElement Method NeedsBrowserCompatibility NeedsMarkupWork NeedsMobileBrowserCompatibility NeedsSpecTable Reference

Node.isSupported()

The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.
API DOM Method NeedsBrowserCompatibility NeedsMobileBrowserCompatibility Node Obsolete Reference

Window.alert()

The Window.alert() method displays an alert dialog with the optional specified content and an OK button.
alert API DOM Method NeedsBrowserCompatibility NeedsCompatTable NeedsMobileBrowserCompatibility Reference Référence Window

Window.confirm()

The Window.confirm() method displays a modal dialog with an optional message and two buttons, OK and Cancel.
API confirm DOM Method NeedsBrowserCompatibility NeedsCompatTable NeedsMobileBrowserCompatibility Reference Window

Window.prompt()

The Window.prompt() displays a dialog with an optional message prompting the user to input some text.
API DOM MakeBrowserAgnostic Method NeedsBrowserCompatibility NeedsCompatTable NeedsMobileBrowserCompatibility prompt Reference Window