JSFiddle - React, Tailwind, and code Playground
by johnhoffman
JavaScript
// Create an audio tag.
var audioElement = document.createElement('audio');
audioElement.autoplay = 'true';
// Load the mp3 file of chickens being chickens.
audioElement.src = 'https://dl.dropboxusercontent.com/u/1531353/Misc/Docudocker/chickens_demanding_food.mp3';