Why doesn't my audio
tag play in Internet Explorer 11?
It works just fine in Google Chrome.
Here is my HTML:
<audio autoplay src="fail.mp3" type="audio/mpeg"></audio>
Why doesn't my audio
tag play in Internet Explorer 11?
It works just fine in Google Chrome.
Here is my HTML:
<audio autoplay src="fail.mp3" type="audio/mpeg"></audio>
According to html5test for IE 11 the audio element should be fully supported, though the
Web Audio API
is not, which might be the problem in your case.