Is there a way to load the audio file sources through jquery? Instead of loading it inline through HTML?
Example:
<audio controls="controls">
<source src="track.ogg" type="audio/ogg" />
<source src="track.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
Technically wouldnt I be able to call on the children of the audio and replace the attr of src to my desired URL?