Guest User

Untitled

a guest
Feb 10th, 2021
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const audio = new Audio('https://www.myinstants.com/media/sounds/woo_htcxajK.mp3');
  2. const observer = new MutationObserver(function(mutations) {
  3.      if (mutations[0].target.className === "countdown__value") {
  4.         audio.play();
  5.      }
  6. });
  7. observer.observe(document.getElementsByTagName("body")[0], {childList: true, subtree:true});
Advertisement
Add Comment
Please, Sign In to add comment