Guest User

Untitled

a guest
Jun 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $("audio").each(function(){
  2. this.addEventListener('play',function(){
  3. $("audio").not(document.getElementById(this.id)).each(function(){
  4. this.pause();
  5. });
  6. });
Add Comment
Please, Sign In to add comment