I'm working on an audio player that works in Chrome, but won't load in IE9. When I use this code it says the browser does not support audio.
<script> var supportsAudio1 = !!document.createElement('audio').canPlayType;
alert(supportsAudio1);</script>
However, sites that also use this method of detecting audio capability say audio can play, and the audio on that site does work. Can anyone help me figure out why IE9 is doing this?
Thanks!