JSFiddle - React, Tailwind, and code Playground
by Vitaliy
HTML
<button id="play">play</button>
JavaScript
$('#play').click(function(){
$('body').append('<audio class="play-box" ><source src="https://upload.wikimedia.org/wikipedia/commons/transcoded/8/84/David_Suchet_BBC_Radio4_Desert_Island_Discs_8_Feb_2009_b00h9vcx.flac/David_Suchet_BBC_Radio4_Desert_Island_Discs_8_Feb_2009_b00h9vcx.flac.ogg" type="audio/mpeg"></audio>');
$('audio').get(0).play();
});