I am currently use this script,
<div id="ID" style="display:none">
{{video}}
</div>
<button class="button" type="button" onclick="
if
(document.getElementById('ID') .style.display=='none')
{document.getElementById('ID') .style.display=''}
else
{document.getElementById('ID') .style.display='none'}">
video
</button>
but the problem with it is that the button doesn’t control the sound, which means that the video is automatically playing, only I can’t see it until I click on the button. Anyone knows a workaround?