user88
user88

Reputation: 23

ONly in IE:HTML5 audio tag giving MEDIA_ERR_SRC_NOT_SUPPORTED when same audio is played more than once

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 help would be appreciated .

Thanks.

Upvotes: 0

Views: 284

Answers (1)

user88
user88

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

Related Questions