How would I write a function that stops ALL instances of playing html5 audio in the DOM?
html5 audio
This worked for me. .stop() threw an error.
.stop()
$.each($('audio'), function () { this.pause(); });