I’ll translate the full article into English, preserving its tone, structure, and code ex...

I’ll translate the full article into English, preserving its tone, structure, and code examples.# HTML Audio: A Complete Guide to the Basic APIs by zhangxinxu, from https://www.zhangxinxu.com/wordpress/?p=8769 This article introduces the basic use of the APIs for the HTML5 `<aud...

Code: Dispatching a CustomEvent

const event = new CustomEvent('show', {
  detail: { message: payload, sentAt: new Date().toLocaleTimeString() }
});

window.dispatchEvent(event);
Result
Waiting for an event...

Code: Listening for the Event Payload

window.addEventListener('show', (event) => {
  render(event.detail.message, event.detail.sentAt);
});
Event log
No events yet.