files/en-us/web/api/speechsynthesisutterance/boundary_event/index.md
{{APIRef("Web Speech API")}}
The boundary event of the Web Speech API is fired when the spoken utterance reaches a word or sentence boundary.
Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property.
addEventListener("boundary", (event) => { })
onboundary = (event) => { }
A {{domxref("SpeechSynthesisEvent")}}. Inherits from {{domxref("Event")}}.
{{InheritanceDiagram("SpeechSynthesisEvent")}}
In addition to the properties listed below, properties from the parent interface, {{domxref("Event")}}, are available.
boundary event.You can use the boundary event in an addEventListener method:
utterThis.addEventListener("boundary", (event) => {
console.log(
`${event.name} boundary reached after ${event.elapsedTime} seconds.`,
);
});
Or use the onboundary event handler property:
utterThis.onboundary = (event) => {
console.log(
`${event.name} boundary reached after ${event.elapsedTime} seconds.`,
);
};
{{Specifications}}
{{Compat}}