JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <button id="play">ola</button>
 <body>

JavaScript

var soundEmbed = null;
function soundPlay()
    {
       // alert('ini');
    if (!soundEmbed)
    	{
    	soundEmbed = document.createElement("embed");
    	soundEmbed.setAttribute("src", "http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples/SoundCardAttrition/stereol.wav");
    	soundEmbed.setAttribute("hidden", true);
    	soundEmbed.setAttribute("autostart", true);
    	}
    else
    	{
    	document.body.removeChild(soundEmbed);
    	soundEmbed.removed = true;
    	soundEmbed = null;
    	soundEmbed = document.createElement("embed");
    	soundEmbed.setAttribute("src", "http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples/SoundCardAttrition/stereol.wav");
    	soundEmbed.setAttribute("hidden", true);
    	soundEmbed.setAttribute("autostart", true);
    	}
    soundEmbed.removed = false;
    document.body.appendChild(soundEmbed);
    
        console.log(soundEmbed);
        
    }
    
    $('play').addEvent('click', function(e){ e.preventDefault(); soundPlay(); });