0

how i can pause all playing audio on all opening pages when I play the new audio on new tab I want audio playing way as The way on "soundcloud.com" Thank you I am using this player

<audio controls>
  <source src="horse.mp3" type="audio/mpeg">
</audio>

I have page for album it's Include Multiple player, I pause all player's in album page by this code

Pu = function ()
{
    var lis = document.getElementsByTagName('audio');
    for (var i = 0; i < lis.length; i++)
    {
        var item = lis[i];
        item.pause();
    }
}

but I need a code to pause all players in the all open page.

1 Answers1

0

If you want to communicate between pages you should use cookies. Here is an example how to do it.

Community
  • 1
  • 1
teo van kot
  • 12,350
  • 10
  • 38
  • 70