Firefox Tomorrow

web api instance property

UserActivation: isActive property

View on MDN ↗

The read-only isActive property of the UserActivation interface indicates whether the current window has transient user activation.

Value

A boolean.

Examples

Checking if a user gesture was recently performed

Use the isActive property to check whether the user is currently interacting with the page.

if (navigator.userActivation.isActive) {
  // proceed to request playing media, for example
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also