Results 161 - 180 of 209

ValidityState.badInput

The read-only property ValidityState.badInput indicates if the user has provided input that the browser is unable to convert. For example, if you have a mail input element whose content does not have a '@'.
API Constraints API HTML DOM Property Read-only ValidityState

WheelEvent.deltaMode

The WheelEvent.deltaMode read-only property returns an unsigned long representing the unit of the delta values scroll amount. Permitted values are:
API DOM Property Read-only Reference Référence WheelEvent

WheelEvent.deltaX

The WheelEvent.deltaX read-only property is a double representing the horizontal scroll amount in the WheelEvent.deltaMode unit.
API DOM Property Read-only Reference Référence WheelEvent

WheelEvent.deltaY

The WheelEvent.deltaY read-only property is a double representing the vertical scroll amount in the WheelEvent.deltaMode unit.
API DOM Property Read-only Reference Référence WheelEvent

WheelEvent.deltaZ

The WheelEvent.deltaZ read-only property is a double representing the scroll amount along the z-axis, in the WheelEvent.deltaMode unit.
DOM Interface Property Read-only Reference Référence WheelEvent

Window.console

The Window.console read-only property returns a reference to the Console object, which provides methods for logging information to the browser's console. These methods are intended for debugging purposes only and should not be relied on for presenting information to end users.
API console Console Property Read-only Reference Window

Window.devicePixelRatio

The Window.devicePixelRatio read-only property returns the ratio of the (vertical) size of one physical pixel on the current display device to the size of one device independent pixels(dips).
API NeedsBrowserCompatibility NeedsExample Property Read-only Reference Référence Window

Window.screenX

The Window.screenX read-only property returns the horizontal distance, in CSS pixels, of the left border of the user's browser from the left side of the screen.
API CSSOM View Property Read-only Reference Référence Window

Window.screenY

The Window.screenY read-only property returns the vertical distance, in CSS pixels of the top border of the user's browser from the top edge of the screen.
API CSSOM View Property Read-only Reference Référence Window

Window.self

The Window.self read-only property returns the window itself, as a WindowProxy. It can be used with dot notation on a window object (that is, window.self) or standalone (self). The advantage of the standalone notation is that a similar notation exists for non-window contexts, such as in Web Workers. By using self, you can refer to the global scope in a way that will work not only in a window context (self will resolve to window.self) but also in a worker context (self will then resolve to WorkerGlobalScope.self).
API HTML DOM Property Read-only Reference Window

WorkerGlobalScope.performance

The  performance read-only property of the WorkerGlobalScope interface returns a Performance object to be used on the worker.
API CheckExample Performance Property Read-only Reference Référence WorkerGlobalScope

RegExp.lastMatch ($&)

The non-standard lastMatch property is a static and read-only property of regular expressions that contains the last matched characters. RegExp.$& is an alias for this property.
JavaScript Property Read-only Reference RegExp Regular Expressions

RegExp.lastParen ($+)

The non-standard lastParen property is a static and read-only property of regular expressions that contains the last parenthesized substring match, if any. RegExp.$+ is an alias for this property.
JavaScript Property Read-only Reference RegExp Regular Expressions

RegExp.leftContext ($`)

The non-standard leftContext property is a static and read-only property of regular expressions that contains the substring preceding the most recent match. RegExp.$` is an alias for this property.
JavaScript Property Read-only Reference RegExp Regular Expressions

RegExp.$1-$9

The non-standard $1, $2, $3, $4, $5, $6, $7, $8, $9 properties are static and read-only properties of regular expressions that contain parenthesized substring matches.
JavaScript Property Read-only Reference RegExp Regular Expressions