JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.createjs.com/preloadjs-0.3.0.min.js"></script>
<script src="http://code.createjs.com/soundjs-0.4.0.min.js"></script>
<img src="http://blog.okfn.org/files/2011/09/steam-trains-1.jpg" width="200px" />

JavaScript

var manifest = [
    {id:"waiting", src:"http://stardotserver.co.uk/waiting2.ogg"}
    
]
var preload = new createjs.LoadQueue()
preload.installPlugin(createjs.Sound)
preload.loadManifest(manifest)

$('img').on('click',function() {
    createjs.Sound.play("waiting", createjs.Sound.INTERRUPT_NONE, 0, 0, -1, .5)
});