W3cubDocs

/Web APIs

SpeechSynthesisEvent: elapsedTime property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨September 2018⁩.

The elapsedTime read-only property of the SpeechSynthesisEvent returns the elapsed time in seconds, after the SpeechSynthesisUtterance.text started being spoken, at which the event was triggered.

Value

A float containing the elapsed time, in seconds.

Note: Early versions of the specification required the elapsed time in milliseconds. Check the compatibility table below for your browser.

Examples

utterThis.onboundary = (event) => {
  console.log(
    `${event.name} boundary reached after ${event.elapsedTime} seconds.`,
  );
};

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Opera Safari Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet WebView Android WebView on iOS
elapsedTime 33 14 49 21 7 33 62 No 7 3.0 No 7
milliseconds 33 14
49–95Windows and macOS only.
21 7–14.1 33 No No 7–14.5 3.0 No 7–14.5

See also

© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisEvent/elapsedTime