This is how I can include a audio file via html:
<audio controls>
<source src="audio/was_ist_ist.ogg" />
</audio>
Now I want to do the same only using javascript. I have this so far:
var audioElement = new Audio("audio/was_ist_ist.ogg");
How do I enable the default controls here?