I want audio playing way as The way on "www.soundcloud.com"
I am using this player
I have page for album it's Include Multiple player, I pause all player's in album page by this code
Pu = function ()but I need a code to pause all players in the all open page.
{
var lis = document.getElementsByTagName('audio');
for (var i = 0; i < lis.length; i++)
{
var item = lis[i];
item.pause();
}
}
Replies
Know the answer? Post it — somebody with the same question will find it here.