Quickstart
Choose the embed your platform allows.
The JavaScript web component is the best experience when you control the page. Links and iframes keep the same voice note usable in locked-down LMS editors.
Option A
JS web component
Add the loader once per page, then render a <tac-player> wherever feedback belongs.
<script async src="https://talkandcomment.com/embed/player.v1.js"></script>
<tac-player
src="https://cdn2.talkandcomment.com/uploads/abc123.m4a"
data-track-id="abc123"
data-player-url="https://talkandcomment.com/p/abc123"
></tac-player>
Option B
Iframe or plain link
Use this path when the editor strips scripts, CSP blocks third-party loaders, or IT wants the lowest-risk pilot.
<a href="https://talkandcomment.com/p/abc123">
Listen to my voice note
</a>
<iframe
src="https://talkandcomment.com/p/abc123"
title="TAC voice note"
width="100%"
height="220"
loading="lazy"
></iframe>