<html>
<body>
<audio controls onloadedmetadata="myFunction()">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script>
function myFunction() {
alert("Meta data for audio loaded");
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_onloadedmetadata_audio by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:59 GMT -->
</html>