Reputation: 23
I am using audio tag to play songs in my web page. Everything is working fine in chrome and firefox. But in IE I am observing following issue.
any audio plays first time. But give error4:MEDIA_ERR_SRC_NOT_SUPPORTED if any audio is played after that including already played audio.
I have more than 5 audio in the page
Any help would be appreciated .
Thanks.
Upvotes: 0
Views: 284
Reputation: 23
I Solved the Issue by using Audio Object in JavaScript instead of using audio tag in html.
eg: var aud = new Audio();
aur.src = audioUrl;
aud.load();
Upvotes: 1